Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/EconForge/dolang.py
Browse files Browse the repository at this point in the history
  • Loading branch information
albop committed Aug 16, 2023
2 parents 8b1ab6f + 0812b8b commit 03d2acd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10' ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]

name: Dolang Python Version ${{ matrix.python-version }}
steps:
Expand Down Expand Up @@ -38,4 +38,4 @@ jobs:
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
flags: unittests
flags: unittests
12 changes: 7 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,30 +1,32 @@
[tool.poetry]
name = "dolang"
version = "0.0.19"
version = "0.0.20"
description = "Dolo Modeling Language"
readme = "README.md"
authors = ["Winant Pablo <[email protected]>"]
license="BSD-2-Clause"

[tool.poetry.dependencies]
python = ">=3.8,<3.11"
python = ">=3.8,<3.12"
numpy = "^1.22.2"
sympy = "^1.11.1"
lark = "^1.1.2"
pytest = "^7.1.3"
numba = {version = "^0.55.0", optional=true}
PyYAML = "^6.0"
numba = {version = "^0.57.1", optional = true}

[tool.poetry.extras]
compile = ['numba']

[tool.poetry.dev-dependencies]
black = "^22.8.0"
pylint = "^2.6.0"
mkdocs = "^1.1.2"
ipython = "^7.18.1"
ipykernel = "^5.3.4"
numba = "^0.56.4"

coverage = "^5.3"
pytest-cov = "^2.10.1"
numba = "^0.57.1"

[build-system]
requires = ["poetry>=1.2.1"]
Expand Down

0 comments on commit 03d2acd

Please sign in to comment.