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.
2 parents f34e900 + a1c8d67 commit 68884b1Copy full SHA for 68884b1
7 files changed
.github/workflows/build-meson.yml
@@ -25,7 +25,7 @@ jobs:
25
with:
26
environment-name: highsdev
27
create-args: >-
28
- python==3.8
+ python==3.9
29
meson
30
pkgconfig
31
ninja
.github/workflows/build-wheels-push.yml
@@ -48,11 +48,11 @@ jobs:
48
- [macos-14, macosx_arm64]
49
- [windows-2022, win_amd64]
50
- [windows-2022, win32]
51
- python: ["cp38", "cp39", "cp310", "cp311", "cp312", "cp313", "cp314"]
+ python: ["cp39", "cp310", "cp311", "cp312", "cp313", "cp314"]
52
steps:
53
- uses: actions/checkout@v6
54
- name: Build wheels
55
- uses: pypa/cibuildwheel@v3.3.1
+ uses: pypa/cibuildwheel@v4.0.0
56
env:
57
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
58
@@ -79,12 +79,12 @@ jobs:
79
80
81
82
83
84
85
86
87
88
89
package-dir: ./highspy-extras
90
.github/workflows/sanitizers-meson.yml
@@ -19,7 +19,7 @@ jobs:
19
20
21
22
23
24
docs/src/interfaces/python/hipo-in-python.md
@@ -53,7 +53,7 @@ print(highspy_extras.get_library_version())
To install locally, you will need
-- Python >= 3.8
+- Python >= 3.9
- BLAS library (bundled or system)
59
## Uninstall
highspy-extras/README.md
@@ -51,7 +51,7 @@ print(highspy_extras.get_library_version())
## Requirements
- BLAS library
The highspy-extras wheels on PyPI and conda-forge ship with a bundled OpenBLAS.
highspy-extras/pyproject.toml
@@ -17,11 +17,10 @@ license-files = [
17
"THIRD_PARTY_NOTICES.md",
18
]
-requires-python = ">=3.8"
+requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
- "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
pyproject.toml
@@ -18,13 +18,12 @@ license-files = [
dependencies = ["numpy", "typing_extensions; python_version < '3.10'"]
# "Development Status :: 4 - Beta",
@@ -116,9 +115,6 @@ norecursedirs = ["check", ".git", "build", "dist", "*.egg-info"]
116
115
build = "*"
117
archs = ["auto64", "auto32"]
118
119
-# Enable free-threaded support
120
-enable = ["cpython-freethreading"]
121
-
122
# highspy does not need vcpkg dependencies (avoid unnecessary compile)
123
environment = { VCPKG_ROOT = "", VCPKG_INSTALLATION_ROOT = "" }
124
0 commit comments