Skip to content

Commit

Permalink
fix pyproject version constraints (#849)
Browse files Browse the repository at this point in the history
  • Loading branch information
gertjanvanzwieten committed Jan 29, 2024
2 parents e1a61d2 + d0d202c commit 90301c7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion nutils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'Numerical Utilities for Finite Element Analysis'

__version__ = version = '9a13'
__version__ = version = '9a14'
version_name = 'jook-sing'
24 changes: 12 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ readme = "README.md"
authors = [
{ name = "Evalf", email = "[email protected]" },
]
requires-python = '~=3.8'
requires-python = '>=3.8'
dependencies = [
"appdirs~=1.0",
"bottombar~=2.0.2",
"numpy>=1.17",
"nutils-poly~=1.0",
"psutil~=5.0",
"appdirs >=1,<2",
"bottombar >=2,<3",
"numpy >=1.17,<2",
"nutils-poly >=1,<2",
"psutil >=5,<6",
"stringly",
"treelog>=1.0b5",
"treelog >=1,<2",
]
dynamic = ["description", "version"]
classifiers = [
Expand All @@ -22,11 +22,11 @@ classifiers = [
]

[project.optional-dependencies]
docs = ["Sphinx>=1.8"]
export_mpl = ["matplotlib>=1.3", "pillow>2.6"]
matrix_mkl = ["mkl<2024"]
matrix_scipy = ["scipy>=0.13"]
import_gmsh = ["meshio"]
docs = ["Sphinx >=1.8,<8"]
export_mpl = ["matplotlib >=3.3,<4"]
matrix_mkl = ["mkl <2024"]
matrix_scipy = ["scipy >=0.13,<2"]
import_gmsh = ["meshio >=4,<6"]

[build-system]
requires = ["flit_core >=3.2,<4"]
Expand Down

0 comments on commit 90301c7

Please sign in to comment.