Skip to content

Commit

Permalink
revert Python 3.13 (pendulum fails) (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschlyter authored Jan 15, 2025
1 parent 13eb414 commit 8d08423
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM python:3.13 AS builder
FROM python:3.12 AS builder
RUN pip3 install poetry
WORKDIR /src
ADD . /src
RUN poetry build

FROM python:3.13
FROM python:3.12
WORKDIR /tmp
COPY --from=builder /src/dist/*.whl .
RUN pip3 install *.whl && rm *.whl
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.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ aggrec_client = "aggrec.client:main"

[tool.poetry.dependencies]
python = "^3.12"
#dnstapir = {git = "https://github.com/dnstapir/python-dnstapir.git", rev = "v1.3.0", extras = ["keymanager", "opentelemetry"]}
dnstapir = {git = "https://github.com/dnstapir/python-dnstapir.git", branch = "main", extras = ["keymanager", "opentelemetry"]}
dnstapir = {git = "https://github.com/dnstapir/python-dnstapir.git", rev = "v1.3.0", extras = ["keymanager", "opentelemetry"]}
mongoengine = "^0.29.0"
http-message-signatures = ">=0.5.0"
requests = "^2.30.0"
Expand Down

0 comments on commit 8d08423

Please sign in to comment.