Skip to content

Commit

Permalink
fixes #249; removes an upper boundary for the python version and make…
Browse files Browse the repository at this point in the history
…s all dependancies open to new versions
  • Loading branch information
derNarr committed Apr 8, 2024
1 parent d8b4647 commit 5d6cd39
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
python-version: ['3.8', '3.11']
python-version: ['3.8', '3.12']
poetry-version: [1.1.13]
fail-fast: false
runs-on: ${{ matrix.os }}
Expand Down
45 changes: 23 additions & 22 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyndl"
version = "1.2.2"
version = "1.2.3"
description = "Naive discriminative learning implements learning and classification models based on the Rescorla-Wagner equations."

license = "MIT"
Expand Down Expand Up @@ -28,29 +28,30 @@ classifiers = ['Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering :: Information Analysis',]

[tool.poetry.dependencies]
python = ">=3.8,<3.12" # Compatible python versions must be declared here
numpy = "^1.23.1"
scipy = "^1.9.0"
pandas = "^1.4.3"
xarray = "^2022.6.0"
netCDF4 = "^1.6.0"
Cython = "^3.0.0"
python = ">=3.8" # Compatible python versions must be declared here
numpy = ">=1.23.1"
scipy = ">=1.9.0"
pandas = ">=1.4.3"
xarray = ">=2022.6.0"
netCDF4 = ">=1.6.0"
Cython = ">=3.0.0"
toml = ">=0.10.2"

[tool.poetry.dev-dependencies]
pytest = "^7.0"
pytest-cov = "^2.4"
pydocstyle = "^6.1.1"
flake8 = "^4.0.1"
sphinx = "^1.4"
sphinx_rtd_theme = "^1.0.0"
notebook = "^6.4.10"
seaborn = "^0.12.1"
numpydoc = "^1.2"
sphinx-copybutton = "^0.5.1"
pylint = "^2.0.0"
nbsphinx = "^0.8.8"
vulture = "^2.3"
Jinja2 = "<3.1.0"
pytest = ">=7.0"
pytest-cov = ">=2.4"
pydocstyle = ">=6.1.1"
flake8 = ">=4.0.1"
sphinx = ">=1.4"
sphinx_rtd_theme = ">=1.0.0"
notebook = ">=6.4.10"
seaborn = ">=0.12.1"
numpydoc = ">=1.2"
sphinx-copybutton = ">=0.5.1"
pylint = ">=2.0.0"
nbsphinx = ">=0.8.8"
vulture = ">=2.3"
Jinja2 = ">=3.1.0"

[tool.pytest.ini_options]
addopts = '--doctest-glob "*.rst"'
Expand Down

0 comments on commit 5d6cd39

Please sign in to comment.