-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removing some CI env vars and updating pyproject.toml for python>=3.9
- Loading branch information
1 parent
08e2b75
commit 7b58c48
Showing
2 changed files
with
2 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -140,8 +140,6 @@ jobs: | |
|
||
- name: Build wheels | ||
env: | ||
CIBW_BUILD: "cp3${{env.PYTHON_SUBVERSION}}-*" | ||
CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux*" | ||
CIBW_ARCHS_MACOS: x86_64 universal2 | ||
CIBW_ARCHS_LINUX: auto aarch64 | ||
uses: pypa/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
[build-system] | ||
build-backend = 'mesonpy' | ||
requires = [ | ||
"numpy >= 2.0.0; python_version > '3.8'", | ||
"oldest-supported-numpy; python_version <= '3.8'", | ||
"numpy >= 2.0.0, | ||
"meson-python" | ||
] | ||
|
||
|
@@ -11,7 +10,7 @@ name = 'scs' | |
version = "3.2.7" | ||
description = 'Splitting conic solver' | ||
readme = 'README.md' | ||
requires-python = '>=3.7' | ||
requires-python = '>=3.9' | ||
license = {file = 'LICENSE'} | ||
authors = [ | ||
{name = "Brendan O'Donoghue", email = "[email protected]"}] | ||
|