We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbd9a11 commit 566399bCopy full SHA for 566399b
.github/workflows/tests.yml
@@ -53,8 +53,11 @@ jobs:
53
uv run --no-sync pytest tests
54
55
- name: Run tests (numpy < 2)
56
+ # No wheel for numpy < 2 on Windows and Python 3.13
57
+ if: ${{ !(matrix.os == 'windows-latest' && matrix.python == '3.13' )}}
58
working-directory: ./python
59
run: |
60
uv pip install setuptools
61
uv pip install "numpy<2"
62
63
+
python/pyproject.toml
@@ -25,7 +25,8 @@ classifiers = [
25
]
26
keywords = ["binary store", "numerical", "arrays"]
27
dependencies = [
28
- "numpy>=1.23.5",
+ "numpy>=1.23.5; python_version < '3.13'",
29
+ "numpy>=2; python_version >= '3.13'",
30
"humanize",
31
32
requires-python = ">=3.10"
0 commit comments