Skip to content

Commit d798635

Browse files
authored
Merge pull request #188 from grillazz/187-python313
187 python313
2 parents 2fdc1e9 + 678bf14 commit d798635

File tree

5 files changed

+1182
-1335
lines changed

5 files changed

+1182
-1335
lines changed

.github/workflows/build-and-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: [ "3.12" ]
16-
poetry-version: [ "1.8.3" ]
15+
python-version: [ "3.13" ]
16+
poetry-version: [ "1.8.5" ]
1717

1818
env:
1919
PYTHONDONTWRITEBYTECODE: 1

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12-slim-bookworm AS base
1+
FROM python:3.13-slim-bookworm AS base
22
RUN apt-get update \
33
&& apt-get upgrade -y \
44
&& apt-get install -y --no-install-recommends curl git build-essential \
@@ -10,7 +10,7 @@ FROM base AS install
1010
WORKDIR /home/code
1111

1212
# allow controlling the poetry installation of dependencies via external args
13-
ARG INSTALL_ARGS="--no-root"
13+
ARG INSTALL_ARGS="--no-root --no-interaction --no-ansi"
1414
ENV POETRY_HOME="/opt/poetry"
1515
ENV PATH="$POETRY_HOME/bin:$PATH"
1616
COPY pyproject.toml poetry.lock ./

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Setup user authentication with JWT and Redis as token storage.
128128
### Local development with poetry
129129

130130
```shell
131-
pyenv install 3.12 && pyenv local 3.12
131+
pyenv install 3.13 && pyenv local 3.13
132132
```
133133
```shell
134134
poetry install --with dev
@@ -189,6 +189,7 @@ I've included a few of my favorites to kick things off!
189189
- **[JUN 8 2024]** implement asyncpg connection pool :fast_forward:
190190
- **[AUG 17 2024]** granian use case implemented with docker compose and rich logger :fast_forward:
191191
- **[OCT 16 2024]** apscheduler added to project :fast_forward:
192+
- **[DEC 16 2024]** bump project to Python 3.13 :fast_forward:
192193

193194
<p align="right">(<a href="#readme-top">back to top</a>)</p>
194195

0 commit comments

Comments
 (0)