Skip to content

Commit 1a062b1

Browse files
committed
bump python version to 3.10
1 parent d8b57ab commit 1a062b1

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/Docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/setup-python@v5
3131
name: Install python
3232
with:
33-
python-version: 3.9
33+
python-version: "3.10"
3434
cache: 'pip'
3535

3636
- name: Install dependencies

.github/workflows/Tests.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/setup-python@v5
4141
name: Install python
4242
with:
43-
python-version: 3.9
43+
python-version: "3.10"
4444
cache: 'pip'
4545

4646
- name: Install dependencies
@@ -78,40 +78,40 @@ jobs:
7878
fail-fast: true
7979
matrix:
8080
include:
81-
- os: windows-latest
82-
python: "3.9"
83-
platform_id: win_amd64
8481
- os: windows-latest
8582
python: "3.10"
8683
platform_id: win_amd64
8784
- os: windows-latest
8885
python: "3.11"
8986
platform_id: win_amd64
87+
- os: windows-latest
88+
python: "3.12"
89+
platform_id: win_amd64
9090

9191
# Linux 64 bit manylinux2014
9292
- os: ubuntu-latest
93-
python: "3.9"
93+
python: "3.10"
9494
platform_id: manylinux_x86_64
9595
manylinux_image: manylinux2014
9696
- os: ubuntu-latest
97-
python: "3.10"
97+
python: "3.11"
9898
platform_id: manylinux_x86_64
9999
manylinux_image: manylinux2014
100100
- os: ubuntu-latest
101-
python: "3.11"
101+
python: "3.12"
102102
platform_id: manylinux_x86_64
103103
manylinux_image: manylinux2014
104104

105105
# MacOS x86_64
106-
- os: macos-latest
107-
python: "3.9"
108-
platform_id: macosx_x86_64
109106
- os: macos-latest
110107
python: "3.10"
111108
platform_id: macosx_x86_64
112109
- os: macos-latest
113110
python: "3.11"
114111
platform_id: macosx_x86_64
112+
- os: macos-latest
113+
python: "3.12"
114+
platform_id: macosx_x86_64
115115
steps:
116116
- name: Download sdist
117117
uses: actions/download-artifact@v4

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ zip_safe = False
2424
packages = find:
2525
package_dir =
2626
=src
27-
python_requires = >=3.9
27+
python_requires = >=3.10
2828
install_requires =
2929
numpy >= 1.20, <3
3030
scipy >= 1.9

0 commit comments

Comments
 (0)