Skip to content

Commit 03d2acd

Browse files
committed
Merge branch 'master' of https://github.com/EconForge/dolang.py
2 parents 8b1ab6f + 0812b8b commit 03d2acd

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

Diff for: .github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: [ '3.8', '3.9', '3.10' ]
12+
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
1313

1414
name: Dolang Python Version ${{ matrix.python-version }}
1515
steps:
@@ -38,4 +38,4 @@ jobs:
3838
uses: codecov/codecov-action@v1
3939
with:
4040
file: ./coverage.xml
41-
flags: unittests
41+
flags: unittests

Diff for: pyproject.toml

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,32 @@
11
[tool.poetry]
22
name = "dolang"
3-
version = "0.0.19"
3+
version = "0.0.20"
44
description = "Dolo Modeling Language"
55
readme = "README.md"
66
authors = ["Winant Pablo <[email protected]>"]
77
license="BSD-2-Clause"
88

99
[tool.poetry.dependencies]
10-
python = ">=3.8,<3.11"
10+
python = ">=3.8,<3.12"
1111
numpy = "^1.22.2"
1212
sympy = "^1.11.1"
1313
lark = "^1.1.2"
1414
pytest = "^7.1.3"
15-
numba = {version = "^0.55.0", optional=true}
1615
PyYAML = "^6.0"
16+
numba = {version = "^0.57.1", optional = true}
17+
18+
[tool.poetry.extras]
19+
compile = ['numba']
1720

1821
[tool.poetry.dev-dependencies]
1922
black = "^22.8.0"
2023
pylint = "^2.6.0"
2124
mkdocs = "^1.1.2"
2225
ipython = "^7.18.1"
2326
ipykernel = "^5.3.4"
24-
numba = "^0.56.4"
25-
2627
coverage = "^5.3"
2728
pytest-cov = "^2.10.1"
29+
numba = "^0.57.1"
2830

2931
[build-system]
3032
requires = ["poetry>=1.2.1"]

0 commit comments

Comments
 (0)