Skip to content

Commit 53a2718

Browse files
committed
try bumping python to 3.12
1 parent c4c832b commit 53a2718

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/anglerfish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [3.10.2]
10+
python-version: [3.12]
1111

1212
steps:
1313
# Checkout code and install miniconda + environment

.github/workflows/lint-code.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: "3.10"
19+
python-version: "3.12"
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
@@ -34,7 +34,7 @@ jobs:
3434
- name: Set up Python
3535
uses: actions/setup-python@v4
3636
with:
37-
python-version: "3.10"
37+
python-version: "3.12"
3838
- name: Install dependencies
3939
run: |
4040
python -m pip install --upgrade pip
@@ -51,7 +51,7 @@ jobs:
5151
- name: Set up Python
5252
uses: actions/setup-python@v4
5353
with:
54-
python-version: "3.10"
54+
python-version: "3.12"
5555
- name: Install dependencies
5656
run: |
5757
python -m pip install --upgrade pip

.github/workflows/pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
- uses: actions/checkout@v4
1212
name: Check out source-code repository
1313

14-
- name: Set up Python 3.10
14+
- name: Set up Python 3.12
1515
uses: actions/setup-python@v4
1616
with:
17-
python-version: 3.10.10
17+
python-version: 3.12
1818

1919
- name: Install python dependencies
2020
run: |

.github/workflows/test-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.10.2]
14+
python-version: [3.12]
1515

1616
steps:
1717
# Checkout code and install miniconda + environment

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
author_email="[email protected]",
3131
url="https://github.com/remiolsen/anglerfish",
3232
license="MIT",
33-
python_requires=">=3.10",
33+
python_requires=">=3.12",
3434
packages=find_packages(),
3535
package_data={"": ["config/adaptors.yaml"]},
3636
# Read requirements.txt

0 commit comments

Comments
 (0)