-
-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[v2] Drop support for Python 3.9 (#2074)
* Drop support for Python 3.9 * Ignore B905 ruff rule * Fix release notes
- Loading branch information
Showing
6 changed files
with
16 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
- uses: actions/[email protected] | ||
name: Install Python | ||
with: | ||
python-version: '3.9' | ||
python-version: '3.11' | ||
|
||
- name: Install PyBuild | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ readme = { file = "README.md", content-type = "text/markdown" } | |
maintainers = [ | ||
{ name = "Alistair Miles", email = "[email protected]" } | ||
] | ||
requires-python = ">=3.9" | ||
requires-python = ">=3.10" | ||
dependencies = [ | ||
'asciitree', | ||
'numpy>=1.23', | ||
|
@@ -30,9 +30,9 @@ classifiers = [ | |
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Operating System :: Unix', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
] | ||
license = { text = "MIT" } | ||
|
||
|
@@ -107,6 +107,7 @@ exclude = [ | |
extend-select = [ | ||
"B" | ||
] | ||
ignore = ["B905"] # zip-without-explicit-strict | ||
|
||
[tool.black] | ||
line-length = 100 | ||
|