Skip to content

Commit bd3224e

Browse files
committed
update min python version in tests
1 parent 97c2c89 commit bd3224e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/cron-tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: true
2020
matrix:
2121
os: [ubuntu-latest, macos-latest] # TODO: re-enable windows-latest
22-
python: ['3.8', '3.9', '3.10', '3.11']
22+
python: ['3.9', '3.10', '3.11']
2323
include:
2424
# These set options for each python version. So, for example, when any
2525
# python 3.11 job in the matrix runs, it should use this toxenv
@@ -32,8 +32,8 @@ jobs:
3232
- python: 3.9
3333
toxenv: py39-test-cov
3434

35-
- python: 3.8
36-
toxenv: py38-test-extradeps
35+
- python: 3.11
36+
toxenv: py311-test-extradeps
3737

3838
steps:
3939
- name: Checkout code

.github/workflows/tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
python: 3.x
2424
toxenv: codestyle
2525

26-
- name: Python 3.9 with minimal dependencies and coverage
26+
- name: Python 3.10 with minimal dependencies and coverage
2727
os: ubuntu-latest
28-
python: 3.9
29-
toxenv: py39-test-cov
28+
python: 3.10
29+
toxenv: py310-test-cov
3030

3131
- name: Python 3.9
3232
os: ubuntu-latest
@@ -55,10 +55,10 @@ jobs:
5555
python: '3.10'
5656
toxenv: nogsl
5757

58-
- name: Python 3.8 with oldest supported version of all dependencies
58+
- name: Python 3.9 with oldest supported version of all dependencies
5959
os: ubuntu-latest
60-
python: 3.8
61-
toxenv: py38-test-oldestdeps
60+
python: 3.9
61+
toxenv: py39-test-oldestdeps
6262

6363
# Mac and Windows:
6464
- name: Python 3.10 standard tests (macOS)

.readthedocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ conda:
77
environment: .rtd-environment.yml
88

99
python:
10-
version: 3.8
10+
version: 3.11
1111
install:
1212
- method: pip
1313
path: .

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ channels:
44
- defaults
55

66
dependencies:
7-
- python=3.8
7+
- python=3.11
88
- gsl
99
- pip
1010
- pip:

0 commit comments

Comments
 (0)