Skip to content

Commit b5f372c

Browse files
Check other pip install options for windows
1 parent 7a6b30c commit b5f372c

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-latest, macos-11, windows-2019]
11+
os: [windows-2019]
1212
steps:
1313
- uses: actions/checkout@v3
1414

mrobpy/pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ build = "cp*"
33
archs = "auto64"
44
before-build = "bash tools/unix-wheels.sh"
55
build-verbosity = 1
6-
test-requires = "pytest<=6.2.5 numpy<2.0.0"
6+
test-requires = ["pytest", "numpy~=1."]
77
test-command = "pytest {package}/tests"
88

9+
[build-system]
10+
requires = [
11+
"'numpy<=2.0.0'",
12+
]
13+
14+
915
[tool.cibuildwheel.linux]
1016
build = "cp*-manylinux*"
1117

mrobpy/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ license = Apache-2.0
2929
license_files = LICENSE.md
3030

3131
[options]
32-
python_requires = >= 3.7
32+
python_requires = >= 3.8
3333

3434
[options.package_data]
3535
* =

0 commit comments

Comments
 (0)