Skip to content

Commit 583d39f

Browse files
Merge pull request #194 from killer0071234/update-pydev-3-12
Bump python to 3.12 on dev platform
2 parents b14da25 + c721565 commit 583d39f

6 files changed

Lines changed: 522 additions & 368 deletions

File tree

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: "3.9"
27+
python-version: "3.12"
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- cron: "0 0 * * *"
1212

1313
env:
14-
DEFAULT_PYTHON: 3.9
14+
DEFAULT_PYTHON: 3.12
1515

1616
jobs:
1717
pre-commit:
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
strategy:
4646
matrix:
47-
python: ["3.9", "3.10"]
47+
python: ["3.10", "3.11", "3.12"]
4848
steps:
4949
- name: ⤵️ Check out code from GitHub
5050
uses: actions/checkout@v4
@@ -95,11 +95,11 @@ jobs:
9595
uses: actions/checkout@v4
9696
- name: ⬇️ Download coverage data
9797
uses: actions/download-artifact@v3
98-
- name: 🏗 Set up Python 3.9
98+
- name: 🏗 Set up Python 3.12
9999
id: python
100100
uses: actions/setup-python@v5
101101
with:
102-
python-version: 3.9
102+
python-version: 3.12
103103
- name: 🏗 Get pip cache dir
104104
id: pip-cache
105105
run: |

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/vscode/devcontainers/python:0-3.9
1+
FROM mcr.microsoft.com/vscode/devcontainers/python:0-3.12
22

33
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
44

0 commit comments

Comments
 (0)