Skip to content

Commit

Permalink
Disable CI on Python 3.12.alpha #62
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainDe committed Jun 16, 2023
1 parent 3bd53a4 commit ff1508a
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/my_github_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,14 @@ jobs:
- '3.11.3'
- '3.11-dev'
- '3.11'
- '3.12.0-alpha.1'
- '3.12.0-alpha.2'
- '3.12.0-alpha.3'
- '3.12.0-alpha.4'
- '3.12.0-alpha.5'
- '3.12.0-alpha.6'
- '3.12.0-alpha.7'
# Disabled because of issue #62 - https://github.com/nedbat/coveragepy/issues/1634
# - '3.12.0-alpha.1'
# - '3.12.0-alpha.2'
# - '3.12.0-alpha.3'
# - '3.12.0-alpha.4'
# - '3.12.0-alpha.5'
# - '3.12.0-alpha.6'
# - '3.12.0-alpha.7'
- '3.12.0-beta.1'
- '3.12-dev'
- 'pypy-2.7'
Expand Down Expand Up @@ -120,9 +121,7 @@ jobs:
pip install pep257
pip install pydocstyle
pip install --upgrade pyflakes || true
# https://github.com/nedbat/coveragepy/issues/1634
python -c "import sys; v = sys.version_info; print(v.major, v.minor, v.micro, v.releaselevel)"
if [[ "(3, 12, 0, 'alpha')" == $(python -c "import sys; v = sys.version_info; print(v.major, v.minor, v.micro, v.releaselevel)") ]]; then pip install coverage==7.2.6; else pip install coverage; fi
pip install coverage
pip install unittest2
- name: Check codestyle
run: |
Expand Down

0 comments on commit ff1508a

Please # to comment.