Skip to content

Commit

Permalink
feat: upgrading python (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladutmd authored Feb 21, 2024
1 parent 8c619ac commit a6b2b0e
Show file tree
Hide file tree
Showing 6 changed files with 112 additions and 223 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/devcontainers/python:1-3.11
FROM mcr.microsoft.com/devcontainers/python:1-3.12

ENV PYTHONUNBUFFERED 1

Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"features": {
"ghcr.io/devcontainers/features/python:1": {
"installTools": true,
"version": "3.11"
"version": "3.12"
}
}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.12"]
services:
postgres:
image: postgres
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ repos:
- id: trailing-whitespace
- id: detect-private-key
- repo: https://github.com/psf/black
rev: 24.1.1
rev: 24.2.0
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.2.0"
rev: "v0.2.2"
hooks:
- id: ruff
Loading

0 comments on commit a6b2b0e

Please sign in to comment.