Skip to content

Commit

Permalink
Drop Python 3.4 support
Browse files Browse the repository at this point in the history
GHA tests also PyPy 3.6.
  • Loading branch information
vstinner committed Jul 21, 2023
1 parent eaff3c1 commit b26fc8d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
# The list of all available versions can be found here:
# Available OS Images:
# https://github.com/actions/runner-images/#available-images
#
# Available Python versions: can be found here:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
os: [ubuntu-latest]
python:
# CPython
- "3.7"
Expand All @@ -26,6 +29,7 @@ jobs:
- "3.12-dev"
# PyPy
- "pypy2.7"
- "pypy3.6"
- "pypy3.7"
- "pypy3.8"
- "pypy3.9"
Expand All @@ -35,13 +39,12 @@ jobs:
python: 3.6
- os: windows-latest
python: 3.11

# macOS: test old and new Python
- os: macos-latest
python: 3.6
- os: macos-latest
python: 3.11
- os: ubuntu-18.04
python: 3.4
- os: ubuntu-20.04
python: 3.5
- os: ubuntu-20.04
Expand Down
8 changes: 6 additions & 2 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ functions for old Python versions.

Supported Python versions:

* Python 2.7, Python 3.4 - 3.11
* PyPy 2.7, 3.6 and 3.7
* Python 3.5 - 3.11
* PyPy 2.7
* PyPy 3.6 - 3.9

Python 2.7 and Python 3.4 are no longer officially supported since GitHub
Actions doesn't support them anymore: only best effort support is provided.

C++03 and C++11 are supported on Python 3.6 and newer.

Expand Down

0 comments on commit b26fc8d

Please sign in to comment.