Skip to content

Commit

Permalink
Drop support for Python 3.8 (due to numpy 2.0)
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Heitzmann Gabrielli <heitzmann@gmail.com>
  • Loading branch information
heitzmann committed Jun 18, 2024
1 parent f8dc01c commit afb76ac
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12
architecture: x64
cache: 'pip'
- name: Install dependencies
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: pypa/cibuildwheel@v2.17.0
env:
CIBW_BUILD: "*-manylinux_x86_64 *-manylinux_i686 *-manylinux_aarch64"
CIBW_SKIP: "cp36-* cp37-* pp*"
CIBW_SKIP: "cp36-* cp37-* cp38-* pp*"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
CIBW_MANYLINUX_I686_IMAGE: "manylinux2014"
CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux2014"
Expand All @@ -38,7 +38,7 @@ jobs:
- uses: pypa/cibuildwheel@v2.17.0
env:
CIBW_BUILD: "*-manylinux_x86_64 *-manylinux_aarch64"
CIBW_SKIP: "cp36-* cp37-* pp*"
CIBW_SKIP: "cp36-* cp37-* cp38-* pp*"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux_2_28"
CIBW_MANYLINUX_I686_IMAGE: "manylinux_2_28"
CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux_2_28"
Expand All @@ -63,7 +63,7 @@ jobs:
- uses: pypa/cibuildwheel@v2.17.0
env:
CIBW_BUILD: "*-musllinux_x86_64 *-musllinux_i686 *-musllinux_aarch64"
CIBW_SKIP: "cp36-* cp37-* pp*"
CIBW_SKIP: "cp36-* cp37-* cp38-* pp*"
CIBW_BEFORE_ALL_LINUX: >
apk update &&
apk add wget &&
Expand All @@ -83,7 +83,7 @@ jobs:
- uses: actions/checkout@v4
- uses: pypa/cibuildwheel@v2.17.0
env:
CIBW_SKIP: "cp36-* cp37-* pp*"
CIBW_SKIP: "cp36-* cp37-* cp38-* pp*"
CIBW_ARCHS_MACOS: "x86_64 universal2"
CIBW_BEFORE_ALL_MACOS: >
wget https://github.com/qhull/qhull/archive/refs/tags/v8.0.2.tar.gz &&
Expand All @@ -99,7 +99,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
name: Build wheels for Windows (${{ matrix.python-version }})
runs-on: windows-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.8', '3.12']
python-version: ['3.9', '3.12']
name: Test for ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.12']
python-version: ['3.9', '3.12']
defaults:
run:
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies = [
"oldest-supported-numpy; platform_system!='Darwin'",
"typing_extensions; python_version < '3.11'"
]
requires-python = ">=3.8"
requires-python = ">=3.9"

[project.optional-dependencies]
docs = ["sphinx", "sphinx_rtd_theme", "sphinx-inline-tabs", "matplotlib"]
Expand Down

0 comments on commit afb76ac

Please sign in to comment.