Skip to content

Commit e849fca

Browse files
committed
feat: add python 3.12
1 parent 1b1741d commit e849fca

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/dependabot.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,12 @@ updates:
4444
target-branch: "main"
4545
ignore:
4646
- dependency-name: "python"
47-
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]
47+
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]
48+
- package-ecosystem: "docker"
49+
directory: "/3.12"
50+
schedule:
51+
interval: "daily"
52+
target-branch: "main"
53+
ignore:
54+
- dependency-name: "python"
55+
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
strategy:
9393
fail-fast: false
9494
matrix:
95-
version: [ "3.7","3.8","3.9","3.10","3.11", ]
95+
version: [ "3.7","3.8","3.9","3.10","3.11","3.12" ]
9696
steps:
9797
- name: Checkout repository
9898
uses: actions/checkout@v3

3.12/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM python:3.12.4

0 commit comments

Comments
 (0)