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

Drop support for Python 3.8 #1414

Merged
merged 3 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Drop support for Python 3.8
  • Loading branch information
jelmer committed Nov 4, 2024
commit cdfe6b12c3384402537afb0af448698fef66402e
2 changes: 1 addition & 1 deletion .github/workflows/pythontest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
["3.9", "3.10", "3.11", "3.12", "3.13"]
fail-fast: false

steps:
Expand Down
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
0.22.5 UNRELEASED

* Drop support for Python 3.8. (Jelmer Vernooij)

0.22.4 2024-11-01

* Fix handling of symrefs with protocol v2.
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ keywords = ["vcs", "git"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -24,7 +23,7 @@ classifiers = [
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Version Control",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"urllib3>=1.25",
]
Expand Down Expand Up @@ -122,7 +121,6 @@ archs = ["auto", "aarch64"]
archs = ["auto", "universal2", "x86_64", "arm64"]
before-all = "rustup target add x86_64-apple-darwin aarch64-apple-darwin"
skip = """\
cp38-macosx_arm64 cp38-macosx_universal2 \
cp39-macosx_x86_64 cp39-macosx_universal2 \
cp310-macosx_x86_64 cp310-macosx_universal2 \
cp311-macosx_x86_64 cp311-macosx_universal2 \
Expand Down
Loading