Skip to content

Commit

Permalink
Bump to Python 3.12
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <[email protected]>
  • Loading branch information
shenanigansd authored Feb 11, 2024
1 parent 96574ad commit a754174
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 4 deletions.
14 changes: 14 additions & 0 deletions .devcontainer/devcontainer-lock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"features": {
"ghcr.io/devcontainers/features/powershell:1": {
"version": "1.2.0",
"resolved": "ghcr.io/devcontainers/features/powershell@sha256:3b8a159d67a68419cbc13f09413fc3523c1a8f13d64bfb3aa7119df4fd324d0e",
"integrity": "sha256:3b8a159d67a68419cbc13f09413fc3523c1a8f13d64bfb3aa7119df4fd324d0e"
},
"ghcr.io/devcontainers/features/python:1": {
"version": "1.3.2",
"resolved": "ghcr.io/devcontainers/features/python@sha256:585d4d8ad574891e2ffa2b1a5823a363fc1562121bdedea1c441daf3560f7006",
"integrity": "sha256:585d4d8ad574891e2ffa2b1a5823a363fc1562121bdedea1c441daf3560f7006"
}
}
}
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3.11"
"version": "3.12",
"installTools": false
},
"ghcr.io/devcontainers/features/powershell:1": {}
}
Expand Down
5 changes: 5 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: "monthly"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.11" ]
python-version: [ "3.12" ]

uses: darbiadev/.github/.github/workflows/python-test.yaml@ea97d99e1520c46080c4c9032a69552e491474ac # v13.0.0
with:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = [
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.11"
requires-python = ">=3.12,<3.13"
dependencies = [
"typer==0.9.0"
]
Expand Down Expand Up @@ -43,7 +43,7 @@ build-backend = "setuptools.build_meta"
[tool.ruff]
preview = true
unsafe-fixes = true
target-version = "py311"
target-version = "py312"
line-length = 120

[tool.ruff.lint]
Expand Down

0 comments on commit a754174

Please sign in to comment.