Skip to content
Open
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
Prev Previous commit
Drop support for EOL Python 3.2-3.9 to fix 'zip() takes no keyword ar…
…guments'
  • Loading branch information
hugovk committed Oct 18, 2025
commit d8fe3ab3deb31fa6f40fc08216edde5dfabf5683
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
max-parallel: 6
matrix:
os: [ubuntu-latest]
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, 3.14]
python-version: ['3.10', 3.11, 3.12, 3.13, 3.14]

steps:
- uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Features
- Feature-rich (e.g. get the five largest keys in a sorted dict: d.keys()[-5:])
- Pragmatic design (e.g. SortedSet is a Python set with a SortedList index)
- Developed on Python 3.10
- Tested with CPython 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14 and PyPy3
- Tested with CPython 3.10, 3.11, 3.12, 3.13, 3.14 and PyPy3
- Tested on Linux, macOS, and Windows

.. image:: https://github.com/grantjenks/python-sortedcontainers/workflows/integration/badge.svg
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
{"name" = "Grant Jenks", "email" = "[email protected]"},
]
readme = "README.rst"
requires-python = ">=3.2"
requires-python = ">=3.10"
license = {"text" = "Apache 2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=rufflint,ruffformatcheck,doc8,docs,rstcheck,build-check,py{38,39,310,311,312,313,314,py3}
envlist=rufflint,ruffformatcheck,doc8,docs,rstcheck,build-check,py{310,311,312,313,314,py3}
skip_missing_interpreters=True

[testenv]
Expand Down