Skip to content

Commit

Permalink
fix(deps): constrain numpy to ensure wheels are used on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Dec 28, 2021
1 parent ee0a87a commit 70c308b
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 47 deletions.
84 changes: 43 additions & 41 deletions poetry.lock

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

9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,18 @@ classifiers = [
]

[tool.poetry.dependencies]
python = ">=3.7.1,<4"
python = ">=3.7.1,<3.11"
atpublic = ">=2.3,<3"
cached_property = ">=1,<2"
cryptography = ">=3,<4"
importlib-metadata = { version = ">=4,<5", python = "<3.8" }
multipledispatch = ">=0.6,<0.7"
numpy = ">=1,<2"
numpy = [
{ version = ">=1,<2", platform = "!= win32" },
{ version = ">=1,<2", python = "<3.10", platform = "win32" },
# wheels exist for python 3.10 + windows from numpy 1.21.3 and higher
{ version = ">=1.21.3,<2", python = ">=3.10", platform = "win32" },
]
pandas = ">=1.2.5,<2"
parsy = ">=1.3.0,<2"
pytz = "^2021.1"
Expand Down
12 changes: 8 additions & 4 deletions setup.py

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

0 comments on commit 70c308b

Please sign in to comment.