Skip to content

Commit 02c6290

Browse files
authored
Remove deprecated python 3.8 from build process (#651)
1 parent f7bfba5 commit 02c6290

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [windows-latest, ubuntu-latest, macos-13, macos-14]
20-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2121
env:
2222
LIMIT_NUMPY_VERSION: 2.0.0
2323
LIMIT_SCIPY_VERSION: 1.13.1
@@ -29,15 +29,15 @@ jobs:
2929
- uses: actions/checkout@v4
3030

3131
- name: Setup Python ${{ matrix.python-version }}
32-
if: ${{ (matrix.os != 'macos-14') || ((matrix.os == 'macos-14') && (matrix.python-version != '3.8') && (matrix.python-version != '3.9')) }}
32+
if: ${{ (matrix.os != 'macos-14') || ((matrix.os == 'macos-14') && (matrix.python-version != '3.9')) }}
3333
uses: actions/setup-python@v5
3434
id: pysetup
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737
cache: 'pip'
3838

39-
- name: Setup Python 3.8-3.9 - macos-arm
40-
if: ${{ (matrix.os == 'macos-14') && ((matrix.python-version == '3.8') || (matrix.python-version == '3.9')) }}
39+
- name: Setup Python 3.9 - macos-arm
40+
if: ${{ (matrix.os == 'macos-14') && (matrix.python-version == '3.9') }}
4141
run: |
4242
brew update
4343
brew install python@${{ matrix.python-version }}

.github/workflows/python-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,20 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
os: [windows-latest, ubuntu-latest, macos-13, macos-14]
27-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
27+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2828
steps:
2929
- uses: actions/checkout@v4
3030

3131
- name: Setup Python ${{ matrix.python-version }}
32-
if: ${{ (matrix.os != 'macos-14') || ((matrix.os == 'macos-14') && (matrix.python-version != '3.8') && (matrix.python-version != '3.9')) }}
32+
if: ${{ (matrix.os != 'macos-14') || ((matrix.os == 'macos-14') && (matrix.python-version != '3.9')) }}
3333
uses: actions/setup-python@v5
3434
id: pysetup
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737
cache: 'pip'
3838

39-
- name: Setup Python 3.8-3.9 - macos-arm
40-
if: ${{ (matrix.os == 'macos-14') && ((matrix.python-version == '3.8') || (matrix.python-version == '3.9')) }}
39+
- name: Setup Python 3.9 - macos-arm
40+
if: ${{ (matrix.os == 'macos-14') && (matrix.python-version == '3.9') }}
4141
run: |
4242
brew update
4343
brew install python@${{ matrix.python-version }}

0 commit comments

Comments
 (0)