Skip to content

Commit

Permalink
Ensure numpy is proper version so not compiled for 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
tmtenbrink committed Nov 18, 2021
1 parent d65bd53 commit 15af596
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 35 deletions.
66 changes: 34 additions & 32 deletions poetry.lock

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

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "rustfrc"
version = "1.1.2"
description = "Fast utility functions useful for Fourier Ring/Shell Correlation: binom_split, pois_gen, square_abs."
readme = "README.md"
requires-python = ">=3.7.0"
requires-python = ">=3.7, <3.11"
license = {text = "Apache-2.0"}
authors = [
{email = "[email protected]"},
Expand All @@ -29,8 +29,8 @@ description = "Fast utility functions useful for Fourier Ring/Shell Correlation:
authors = ["Tip ten Brink <[email protected]>"]

[tool.poetry.dependencies]
python = ">= 3.7"
numpy = ">= 1.18, < 2"
python = ">= 3.7, <3.11"
numpy = " >= 1.18, < 2"

[tool.poetry.dev-dependencies]
maturin = "^0.11.3"
Expand Down

0 comments on commit 15af596

Please sign in to comment.