Skip to content
Open
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: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@ readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any reason to not also drop 3.10? I only found 3 users of this in my code folder, fxci-config, lando and scriptworker-scripts, all of which are >= 3.11. The only other user I know of is me and I'm on >= 3.13.

(actually looks like those are the only projects on github using this https://github.com/search?q=simple-github+language%3Atoml&type=code & https://github.com/search?q=simple-github+path%3Areq*.txt&type=code)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll defer to @ahal.

dependencies = [
"aiohttp[speedups]~=3.8",
"gql[aiohttp,requests]>=4,<5",
Expand Down
2 changes: 1 addition & 1 deletion taskcluster/kinds/docker-image/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ tasks:
fetch: {}
python:
args:
PYTHON_VERSIONS: "3.14 3.13 3.12 3.11 3.10 3.9"
PYTHON_VERSIONS: "3.14 3.13 3.12 3.11 3.10"
UV_VERSION: 0.9.18
Loading