Skip to content
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.8 support #30

Closed
hugovk opened this issue Oct 15, 2019 · 10 comments
Closed

Add Python 3.8 support #30

hugovk opened this issue Oct 15, 2019 · 10 comments
Assignees

Comments

@hugovk
Copy link
Contributor

hugovk commented Oct 15, 2019

Python 3.8.0 was released yesterday, 2019-10-14:

Please could you also add support in GitHub Actions for Python 3.8? Thank you!

Also requested at GitHub Community Forum:

Thank you!

@webknjaz
Copy link

@damccorm ^

@damccorm
Copy link
Contributor

@bryanmacfarlane who owns this now

@matthewfeickert
Copy link

cc @kratsg @lukasheinrich

@thoward27
Copy link

Is there an ETA for this? Really looking forward to having 3.8 available for my actions.

@loozhengyuan
Copy link

FWIW, since it is taking some time for the newer Python versions to be available in the tool-cache, here's a snippet in case anyone requires >=3.8 in their existing workflow. You can use any tags available from Docker Hub:

jobs:
  test:
    name: Test on ${{ matrix.container }}
    runs-on: ubuntu-latest
    container: ${{ matrix.container }}
    strategy:
      matrix:
        container:
          - python:3.8-slim
          - python:3.7-slim
          - python:3.6-slim

    steps:
    - uses: actions/checkout@v1
    - name: Check Python version
      run: |
        python -V

@madhurig
Copy link

The update is in progress, we expect python 3.8 to be available in the next 2-3 days on the virtual environments for GitHub actions.

@albertus82
Copy link

At the moment, Python 3.8.0 seems to be available in Windows and Ubuntu, but not yet in macOS: https://github.com/albertus82/jar-classes-version-detector/runs/284581330

@albertus82
Copy link

The macOS update apparently took a few more days, but now it seems to be working: https://github.com/albertus82/jar-classes-version-detector/runs/288140878. Thanks.

@hugovk
Copy link
Contributor Author

hugovk commented Nov 4, 2019

@albertus82 Thanks for keeping us updated!

And thanks GitHub for adding it!

(In second place of the CIs I'm checking. 🥇Travis CI: 21h from release to availability; 🥈GHA 21 days; Azure Pipelines and AppVeyor still WIP.)

@madhurig
Copy link

madhurig commented Nov 4, 2019

Python 3.8 is now available on windows, macOS and ubuntu virtual environments for GitHub actions. Thank you for your patience.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

9 participants