Skip to content

Remove support for Python 3.8 #2874

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

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,8 @@ jobs:
- "3.11"
- "3.10"
- "3.9"
- "3.8"
- pypy-3.10
- pypy-3.9
- pypy-3.8
- graalpy-24.1
os:
- ubuntu-latest
Expand All @@ -45,7 +43,6 @@ jobs:
- { os: windows-latest, py: "graalpy-24.1" }
- { os: windows-latest, py: "pypy-3.10" }
- { os: windows-latest, py: "pypy-3.9" }
- { os: windows-latest, py: "pypy-3.8" }
steps:
- uses: taiki-e/install-action@cargo-binstall
- name: Install OS dependencies
Expand Down
1 change: 1 addition & 0 deletions docs/changelog/2874.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove support for Python 3.8, which is now end of life upstream.
7 changes: 1 addition & 6 deletions src/virtualenv/seed/wheels/embed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@

BUNDLE_FOLDER = Path(__file__).absolute().parent
BUNDLE_SUPPORT = {
"3.8": {
"pip": "pip-25.0.1-py3-none-any.whl",
"setuptools": "setuptools-75.3.2-py3-none-any.whl",
"wheel": "wheel-0.45.1-py3-none-any.whl",
},
"3.9": {
"pip": "pip-25.0.1-py3-none-any.whl",
"setuptools": "setuptools-78.1.0-py3-none-any.whl",
Expand Down Expand Up @@ -42,7 +37,7 @@
"wheel": "wheel-0.45.1-py3-none-any.whl",
},
}
MAX = "3.8"
MAX = "3.9"


def get_embed_wheel(distribution, for_py_version):
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ env_list =
3.11
3.10
3.9
3.8
graalpy
coverage
readme
Expand Down
Loading