Skip to content

Commit

Permalink
Merge pull request #343 from deepanshs/djs/py_versions
Browse files Browse the repository at this point in the history
remove support for py3.8
  • Loading branch information
deepanshs committed May 8, 2024
2 parents 295b26a + 9ab6b89 commit f165867
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration-pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.9, "3.10", "3.11", "3.12"]

steps:
- name: Checkout
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
runs-on: "macos-latest"
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.9, "3.10", "3.11", "3.12"]

steps:
- name: Checkout
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
runs-on: "windows-latest"
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.9, "3.10", "3.11", "3.12"]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
CIBW_BEFORE_ALL_LINUX: "yum -y install openblas-devel fftw-devel"

CIBW_BUILD: "${{ matrix.cibw.build || '*' }}"
CIBW_SKIP: "${{ matrix.cibw.skip || 'cp36* cp37*' }}"
CIBW_SKIP: "${{ matrix.cibw.skip || 'cp36* cp37* cp38*' }}"
CIBW_MANYLINUX_X86_64_IMAGE: "${{ matrix.cibw.manylinux_image }}"
CIBW_MANYLINUX_I686_IMAGE: "${{ matrix.cibw.manylinux_image }}"
CIBW_MANYLINUX_AARCH64_IMAGE: "${{ matrix.cibw.manylinux_image }}"
Expand Down

0 comments on commit f165867

Please sign in to comment.