Skip to content

Commit d63e60d

Browse files
authored
Merge pull request #462 from zivy/advancePythonVersions
Move Python testing versions forward.
2 parents ac194aa + 712f9d2 commit d63e60d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ executors:
2828
jobs:
2929
lint:
3030
docker:
31-
- image: cimg/python:3.9
31+
- image: cimg/python:3.12
3232
steps:
3333
- checkout
3434
- run:
@@ -111,7 +111,7 @@ workflows:
111111
- test:
112112
matrix:
113113
parameters:
114-
python-version: ['3.8', '3.11']
114+
python-version: ['3.9', '3.12']
115115
os: ["linux"]
116116
requires:
117117
- lint

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@v4
24-
- name: Set up Python 3.10
24+
- name: Set up Python 3.12
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: '3.10'
27+
python-version: '3.12'
2828
- name: Install and run black for notebooks
2929
run: |
3030
python -m pip install --upgrade pip
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
matrix: #using macos-13 because pyenchant doesn't work on macos-latest (macos 14, arm64 architecture)
3737
os: [macos-13, windows-latest, ubuntu-latest]
38-
python-version: ['3.8', '3.11']
38+
python-version: ['3.9', '3.12']
3939
runs-on: ${{ matrix.os }}
4040
steps:
4141
- uses: actions/checkout@v4

.github/workflows/scheduled_or_manual.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- uses: actions/checkout@v4
25-
- name: Set up Python 3.10
25+
- name: Set up Python 3.12
2626
uses: actions/setup-python@v5
2727
with:
28-
python-version: '3.10'
28+
python-version: '3.12'
2929
- name: Install and run black for notebooks
3030
run: |
3131
python -m pip install --upgrade pip
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
matrix: #using macos-13 because pyenchant doesn't work on macos-latest (macos 14, arm64 architecture)
3838
os: [macos-13, windows-latest]
39-
python-version: ['3.8', '3.11']
39+
python-version: ['3.9', '3.12']
4040
inputs: ["00_ or 01_ or 02_ or 03_ or 04_ or 05_ or 10_ or 20_ or 21_ or 22_ or 300_ or 30_ or 31_ or 32_ or 33_ or 34_ or 35_ or 36_", "51_ or 55_ or 56_ or 60_ or 61_ or 62_ or 63_ or 64_", "65_ or 66_ or 67_ or 68_ or 69_ or 70_ or 71_"]
4141
runs-on: ${{ matrix.os }}
4242
steps:

0 commit comments

Comments
 (0)