Skip to content

Commit ccf0131

Browse files
committed
Updating versions of Python
1 parent c717711 commit ccf0131

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/CI.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ on:
1111
pull_request:
1212
branches:
1313
- "main"
14-
schedule:
14+
# schedule:
1515
# Run by default Sunday morning at 3:30:
1616
# Scheduled workflows run on the latest commit on the default or base branch.
1717
# (from https://help.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events-schedule)
18-
- cron: "30 3 * * 0"
18+
# - cron: "30 3 * * 0"
1919

2020
jobs:
2121
lint:
22-
name: Lint ubuntu-latest Py3.9
22+
name: Lint ubuntu-latest Py3.12
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v1
@@ -32,7 +32,7 @@ jobs:
3232
# More info on options: https://github.com/conda-incubator/setup-miniconda
3333
- uses: conda-incubator/setup-miniconda@v2
3434
with:
35-
python-version: 3.9
35+
python-version: 3.12
3636
environment-file: devtools/conda-envs/ci.yaml
3737
activate-environment: ci
3838
auto-update-conda: false
@@ -57,7 +57,7 @@ jobs:
5757
strategy:
5858
matrix:
5959
os: [macOS-latest, ubuntu-latest]
60-
python-version: [3.8, 3.9]
60+
python-version: [3.11, 3.12]
6161
steps:
6262
- uses: actions/checkout@v1
6363
- name: Additional info about the build

.github/workflows/Release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
lint:
15-
name: Lint ubuntu-latest Py3.9
15+
name: Lint ubuntu-latest Py3.12
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v1
@@ -25,7 +25,7 @@ jobs:
2525
# More info on options: https://github.com/conda-incubator/setup-miniconda
2626
- uses: conda-incubator/setup-miniconda@v2
2727
with:
28-
python-version: 3.9
28+
python-version: 3.12
2929
environment-file: devtools/conda-envs/release.yaml
3030
activate-environment: release
3131
auto-update-conda: false
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
matrix:
5252
os: [macOS-latest, ubuntu-latest]
53-
python-version: [3.8, 3.9]
53+
python-version: [3.11, 3.12]
5454
steps:
5555
- uses: actions/checkout@v1
5656
- name: Additional info about the build
@@ -84,18 +84,18 @@ jobs:
8484
name: codecov-${{ matrix.os }}-py${{ matrix.python-version }}
8585

8686
deploy:
87-
name: PyPi ubuntu-latest Py3.9
87+
name: PyPi ubuntu-latest Py3.12
8888
# Run only for tagged releases publishing development or release candidates
8989
# only to test.pypi, otherwise to both it and the main pypi.
9090
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags')
9191
runs-on: ubuntu-latest
9292
needs: [lint, test]
9393
steps:
9494
- uses: actions/checkout@v1
95-
- name: Set up Python 3.9
95+
- name: Set up Python 3.12
9696
uses: actions/setup-python@v1
9797
with:
98-
python-version: 3.9
98+
python-version: 3.12
9999
- name: Install package
100100
shell: bash -l {0}
101101
run: |

0 commit comments

Comments
 (0)