-
Notifications
You must be signed in to change notification settings - Fork 143
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the issue:
Numpy was unpinned but the requirements for build-system was missed:
Line 5 in 0f802ab
"numpy>=1.17.0,<1.26", |
Had to apply the following patch for my AUR package to be buildable:
--- pyproject.toml 2023-11-12 20:35:07.203052447 +0100
+++ pyproject.toml 2023-11-12 20:35:25.833092070 +0100
@@ -2,7 +2,7 @@
requires = [
"setuptools>=48.0.0",
"cython",
- "numpy>=1.17.0,<1.26",
+ "numpy>=1.17.0",
"versioneer[toml]>=0.28",
]
build-backend = "setuptools.build_meta"
Reproducable code example:
N/A
Error message:
N/A
PyTensor version information:
2.17.4
Context for the issue:
I maintain the AUR package for PyTensor.
twiecki and maresb
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working