Skip to content

Commit 643c266

Browse files
committed
Drop 3.8 due to scipy
1 parent 51c700c commit 643c266

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/linux-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: true
2020
matrix:
2121
# python-version: ["3.9", "3.10", "3.11", "3.12"]
22-
python-version: ["3.8", "3.11"]
22+
python-version: ["3.9", "3.12"]
2323

2424
env:
2525
PYTHON_VERSION: ${{ matrix.python-version }}

.github/workflows/wheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
env:
3131
# Select wheels
3232
CIBW_BUILD: "*-manylinux_x86_64 *-win_amd64 *-macosx_x86_64 *-macosx_arm64"
33-
CIBW_SKIP: "cp36-* cp37-* pp* cp38-macosx_arm64"
33+
CIBW_SKIP: "cp36-* cp37-* cp38-* pp* cp38-macosx_arm64"
3434
CIBW_ARCHS: "native"
3535
# use manylinux2014
3636
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014

.github/workflows/windows-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: true
2020
matrix:
21-
python-version: ["3.8", "3.11"]
21+
python-version: ["3.9", "3.12"]
2222

2323
env:
2424
PYTHON_VERSION: ${{ matrix.python-version }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "pyoptinterface"
77
version = "0.3.0"
88
description = "Python interface to multiple optimization solvers"
99
readme = "README.md"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
authors = [{ name = "Yue Yang", email = "metab0t@outlook.com" }]
1212
classifiers = [
1313
'Development Status :: 5 - Production/Stable',
@@ -23,7 +23,7 @@ Homepage = "https://github.com/metab0t/pyoptinterface"
2323
matrix = ["numpy", "scipy"]
2424
highs = ["highsbox"]
2525
nlp = ["llvmlite", "tccbox"]
26-
test = ["pytest", "numpy", "scipy", "highsbox", "llvmlite", "tccbox"]
26+
test = ["pytest", "numpy", "scipy>=1.11.0", "highsbox", "llvmlite", "tccbox"]
2727

2828
[tool.scikit-build]
2929
editable.rebuild = true

0 commit comments

Comments
 (0)