Skip to content

Commit 9eed967

Browse files
committedJul 24, 2023
⬆️ use python 3.9
Signed-off-by: ff137 <[email protected]>
1 parent 9da32d7 commit 9eed967

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.github/workflows/publish-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- name: Install poetry
1515
run: pipx install poetry
16-
- name: Set up Python 3.6
16+
- name: Set up Python 3.9
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: 3.6
19+
python-version: 3.9
2020
cache: poetry
2121
- name: Install dependencies
2222
run: poetry install

‎docker/Dockerfile.python3.9

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.6.13
1+
FROM python:3.9.17
22

33
RUN pip install poetry
44

@@ -12,6 +12,6 @@ ADD tests tests
1212

1313
RUN poetry install
1414
# Make site packages location more accessible (for use with volumes)
15-
RUN ln -s $(poetry env info -p)/lib/python3.6/site-packages site-packages
15+
RUN ln -s $(poetry env info -p)/lib/python3.9/site-packages site-packages
1616

1717
ENTRYPOINT ["/bin/sh", "-c", "poetry run pytest tests \"$@\"", "--"]

0 commit comments

Comments
 (0)
Please sign in to comment.