Skip to content

Commit

Permalink
Change dependency specifiers from '~=' to '>='
Browse files Browse the repository at this point in the history
  • Loading branch information
robbievanleeuwen committed Dec 16, 2024
1 parent 7035a60 commit 994701f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
22 changes: 11 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ classifiers = [
requires-python = ">=3.10,<3.13"
dependencies = [
"numpy>=1.26.4",
"scipy~=1.14.1",
"matplotlib~=3.9.2",
"shapely~=2.0.6",
"cytriangle~=1.0.3",
"rich[jupyter]~=13.9.4",
"more-itertools~=10.5.0",
"scipy>=1.14.1",
"matplotlib>=3.9.2",
"shapely>=2.0.6",
"cytriangle>=1.0.3",
"rich[jupyter]>=13.9.4",
"more-itertools>=10.5.0",
]

[project.urls]
Expand All @@ -47,17 +47,17 @@ Changelog = "https://github.com/robbievanleeuwen/section-properties/releases"

[project.optional-dependencies]
numba = [
"numba~=0.60.0",
"numba>=0.60.0",
]
rhino = [
"rhino3dm~=8.9.0",
"rhino-shapley-interop~=0.0.4",
"rhino3dm>=8.9.0",
"rhino-shapley-interop>=0.0.4",
]
dxf = [
"cad-to-shapely~=0.3.2",
"cad-to-shapely>=0.3.2",
]
pardiso = [
"pypardiso~=0.4.6; platform_system == 'Windows' or platform_system == 'Linux'"
"pypardiso>=0.4.6; platform_system == 'Windows' or platform_system == 'Linux'"
]

[dependency-groups]
Expand Down
22 changes: 11 additions & 11 deletions uv.lock

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

0 comments on commit 994701f

Please sign in to comment.