Skip to content

Commit a4020f3

Browse files
authored
Drop Python 3.9 (#576)
1 parent 990e118 commit a4020f3

File tree

12 files changed

+13
-14
lines changed

12 files changed

+13
-14
lines changed

.github/workflows/array-api-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: ["ubuntu-latest"]
24-
python-version: ["3.9"]
24+
python-version: ["3.10"]
2525

2626
steps:
2727
- name: Checkout Cubed
@@ -126,4 +126,4 @@ jobs:
126126
127127
EOF
128128
129-
pytest -v -rxXfEA --hypothesis-max-examples=2 --disable-data-dependent-shapes --disable-extension linalg --hypothesis-disable-deadline --cov=cubed.array_api --cov-report=term-missing
129+
pytest -v -rxXfEA --hypothesis-max-examples=2 --disable-data-dependent-shapes --disable-extension linalg --hypothesis-disable-deadline

.github/workflows/beam-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: ["ubuntu-latest"]
21-
python-version: ["3.9"]
21+
python-version: ["3.10"]
2222

2323
steps:
2424
- name: Checkout source

.github/workflows/dask-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: ["ubuntu-latest"]
21-
python-version: ["3.9"]
21+
python-version: ["3.10"]
2222

2323
steps:
2424
- name: Checkout source

.github/workflows/jax-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: ["ubuntu-latest"]
21-
python-version: ["3.9"]
21+
python-version: ["3.10"]
2222

2323
steps:
2424
- name: Checkout source

.github/workflows/modal-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: ["ubuntu-latest"]
20-
python-version: ["3.9"]
20+
python-version: ["3.10"]
2121

2222
steps:
2323
- name: Checkout source

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v3
2121
with:
22-
python-version: "3.9"
22+
python-version: "3.10"
2323
- name: Install pypa/build
2424
run: >-
2525
python3 -m

.github/workflows/scale-tests.yml.disabled

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: ["ubuntu-latest"]
20-
python-version: ["3.9"]
20+
python-version: ["3.10"]
2121

2222
steps:
2323
- name: Checkout source

.github/workflows/slow-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: ["ubuntu-latest"]
21-
python-version: ["3.9"]
21+
python-version: ["3.10"]
2222

2323
steps:
2424
- name: Checkout source

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: ["ubuntu-latest", "macos-12", "windows-latest"]
21-
python-version: ["3.9"]
21+
python-version: ["3.10"]
2222
PIP_FLAGS: [""]
2323
include:
2424
- os: "ubuntu-latest"

docs/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Contributions to Cubed are very welcome. Please head over to [GitHub](https://gi
77
Create an environment with
88

99
```shell
10-
conda create --name cubed python=3.9
10+
conda create --name cubed python=3.10
1111
conda activate cubed
1212
pip install -r requirements.txt
1313
pip install -e .

0 commit comments

Comments
 (0)