Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reverting to 3.12 until RTD supports 3.13 #152

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.12"
cache: poetry
- run: poetry install -v
- run: just ${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
tabedzki marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version: 2
build:
os: ubuntu-24.04
tools:
python: "3.13"
python: "3.12"

formats: all

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/python:3.13-alpine
FROM docker.io/python:3.12-alpine

LABEL org.opencontainers.image.authors="[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/python:3.13-alpine
FROM docker.io/python:3.12-alpine

CMD ["deck-chores"]
LABEL org.label-schema.name="deck-chores"
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ deck-chores = "deck_chores.main:main"
# the Dockerfile{-dev} have these values too
# .readthedocs.yml must be in parity with the Python version
# it's also all over the Github workflows
python = "^3.13"
python = "^3.12"
apscheduler = "^3.6"
cerberus = "^1.3.4"
docker = {version = "^7", extras = ["ssh"]}
Expand Down