Skip to content

Commit

Permalink
relax upper bound constraints of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfromearth committed Jun 17, 2024
1 parent 6e6e1da commit 8e77314
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 48 deletions.
85 changes: 47 additions & 38 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,24 @@ ncompare = "ncompare.console:main"

[tool.poetry.dependencies]
python = ">=3.9,<3.13"
numpy = "^1.26.0"
netCDF4 = "^1.6.4"
numpy = ">=1.26.0"
netCDF4 = ">=1.6.4"
xarray = ">=2023.9,<2025.0"
colorama = "^0.4.6"
openpyxl = "^3.1.2"
colorama = ">=0.4.6"
openpyxl = ">=3.1.2"

[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.2,<9.0.0"
ruff = ">=0.0.291,<0.4.8"
black = ">=23.9.1,<25.0.0"
mypy = "^1.5.1"
mypy = ">=1.5.1"
pytest-cov = ">=4.1,<6.0"
mkdocs = "^1.5.3"
markdown-callouts = "^0.4.0"
markdown-include = "^0.8.1"
mkdocs = ">=1.5.3"
markdown-callouts = ">=0.4.0"
markdown-include = ">=0.8.1"
mkdocstrings = ">=0.24.1,<0.26.0"
mkdocs-jupyter = "^0.24.6"
mkdocs-material = "^9.5.12"
mkdocs-jupyter = ">=0.24.6"
mkdocs-material = ">=9.5.12"

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

0 comments on commit 8e77314

Please sign in to comment.