-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add python 3.10 test #18
Conversation
@@ -5,9 +5,10 @@ COPY --from=python:3.6.13-alpine3.13 /usr/local/ /usr/local/ | |||
COPY --from=python:3.7.10-alpine3.13 /usr/local/ /usr/local/ | |||
COPY --from=python:3.8.8-alpine3.13 /usr/local/ /usr/local/ | |||
COPY --from=python:3.9.2-alpine3.13 /usr/local/ /usr/local/ | |||
COPY --from=python:3.10.4-alpine3.14 /usr/local/ /usr/local/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[ask] There's no alpine3.13 images of Python 3.10 on Docker Hub.
Which image should I use here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is ok to use alpine 3.14. Can you update all images to 3.14?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done in f698192
|
||
[testenv] | ||
deps = | ||
pytest >=5.4.0,<6.0.0 | ||
pytest >=6.2.5,<7.0.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to upgrade pytest for python 3.10
@@ -5,9 +5,10 @@ COPY --from=python:3.6.13-alpine3.13 /usr/local/ /usr/local/ | |||
COPY --from=python:3.7.10-alpine3.13 /usr/local/ /usr/local/ | |||
COPY --from=python:3.8.8-alpine3.13 /usr/local/ /usr/local/ | |||
COPY --from=python:3.9.2-alpine3.13 /usr/local/ /usr/local/ | |||
COPY --from=python:3.10.4-alpine3.14 /usr/local/ /usr/local/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done in f698192
Thank you for the updates! pysen/.github/workflows/pysen-test.yml Lines 12 to 13 in b227e2c
Could you please change the image hash to diff --git a/.github/workflows/pysen-test.yml b/.github/workflows/pysen-test.yml
index 87778d5..55bb3a1 100644
--- a/.github/workflows/pysen-test.yml
+++ b/.github/workflows/pysen-test.yml
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-20.04
timeout-minutes: 15
container:
- image: quay.io/pysen/pysen-test@sha256:e6ecc68fda873bf269de16cbed734a627232b88cbdf7054c0520a31a57439738
+ image: quay.io/pysen/pysen-test@sha256:a37dbee9ecc51ee5240deb275001a459ec177eb4e7b3666ae00088db102c6b9d
steps:
- uses: actions/checkout@v2
with: |
@bonprosoft Sorry for keeping you waiting. I updated the image hash. |
I'm so sorry for my late response. The CI job for the latest commit 37edfda fails because of the git issue
I fixed the issue in #19, so could you rebase this branch from the latest I'm sorry to trouble you. |
Co-authored-by: Yuki Igarashi <[email protected]>
@bonprosoft Thanks for the reply! I applied it! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! LGTM!!
@Hakuyume friendly ping |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@hirosassa Thank you for your contribution!! |
related to #15
I added Python 3.10 entry on supported Python classifier and tests workflow.