Skip to content

Commit

Permalink
removing support for py<3.8 since pybind11 no longer supports 3.7 (be…
Browse files Browse the repository at this point in the history
…yond EOL), and thus codegen in unusable on those platforms too
  • Loading branch information
vineetbansal committed Aug 2, 2024
1 parent a9fd00a commit 2155482
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
output-dir: wheelhouse
env:
CIBW_BUILD: "cp3*"
CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux_* *-macosx_*"
CIBW_SKIP: "cp36-* cp37-* *-win32 *-manylinux_i686 *-musllinux_* *-macosx_*"
CIBW_BUILD_VERBOSITY: 1

# Clean the build directory between builds
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
output-dir: wheelhouse
env:
CIBW_BUILD: "cp3*"
CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux_*"
CIBW_SKIP: "cp36-* cp37-* *-win32 *-manylinux_i686 *-musllinux_*"
# Clean the build directory between builds
CIBW_BEFORE_BUILD: >-
rm -rf {package}/osqp_sources/build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_mkl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
output-dir: wheelhouse
env:
CIBW_BUILD: "cp3*"
CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux_*"
CIBW_SKIP: "cp36-* cp37-* *-win32 *-manylinux_i686 *-musllinux_*"
CIBW_BUILD_VERBOSITY: 1

# Clean the build directory between builds
Expand Down
2 changes: 1 addition & 1 deletion src/osqp/codegen/pywrapper/setup.py.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ setup(
license='Apache 2.0',
url="https://osqp.org/",

python_requires='>=3.7',
python_requires='>=3.8',
setup_requires=["numpy >= 1.7"],
install_requires=['numpy >= 1.7'],

Expand Down

0 comments on commit 2155482

Please sign in to comment.