Skip to content

Commit

Permalink
Revert to Python 3.9 (#389)
Browse files Browse the repository at this point in the history
Tools in 6.0 used Python 3.8.  The 6.1 tried to upgrade to Python 3.10, but the [py-ascii-graph](https://github.com/kakwa/py-ascii-graph) is not compatible (used by the `test-perf` tool). Reverting to Python 3.9 should fix it for now.
  • Loading branch information
nyurik authored Oct 29, 2021
1 parent a460816 commit 74fcd48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN set -eux ;\


# Build osmborder
FROM python:3.10 as c-builder
FROM python:3.9 as c-builder
ARG OSMBORDER_REV=e3ae8f7a2dcdcd6dc80abab4679cb5edb7dc6fa5

RUN set -eux ;\
Expand Down Expand Up @@ -60,7 +60,7 @@ RUN set -eux ;\


# Primary image
FROM python:3.10-slim
FROM python:3.9-slim
LABEL maintainer="Yuri Astrakhan <[email protected]>"

ARG PG_MAJOR=12
Expand Down

0 comments on commit 74fcd48

Please sign in to comment.