Skip to content

Commit

Permalink
Merge pull request #165 from danielx/chore/update-runtime
Browse files Browse the repository at this point in the history
chore: update to bookworm and python 3.13
  • Loading branch information
danielx authored Oct 20, 2024
2 parents 0580fcd + 7d0bc8f commit fb68fcc
Show file tree
Hide file tree
Showing 6 changed files with 88 additions and 88 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.13"

- name: Generate requirements.txt
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.13"
- name: install dependencies
run: |
python -m pip install --upgrade pipenv
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim-bullseye
FROM python:3.13-slim-bookworm

COPY requirements.txt requirements.txt
RUN pip install --compile --no-cache-dir -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ requirements:
pipenv requirements > requirements.txt

.PHONY: build
build:
build: requirements
docker build --pull --rm -f Dockerfile -t chat-notifierr:latest .

.PHONY: run
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ pytest-mock = "*"
pytest-cov = "*"

[requires]
python_version = "3.11"
python_version = "3.13"
166 changes: 83 additions & 83 deletions Pipfile.lock

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

0 comments on commit fb68fcc

Please sign in to comment.