forked from HinodeXRT/xrtpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop support for Python 3.9 (HinodeXRT#281)
* Drop Python 3.9 * Drop Python 3.9 * pre-commit run --all-files * remove python 3.9 CI runs * Update .github/workflows/testing.yml Co-authored-by: Nabil Freij <[email protected]> --------- Co-authored-by: Nabil Freij <[email protected]>
- Loading branch information
Showing
5 changed files
with
12 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,6 +138,7 @@ dmypy.json | |
version.py | ||
.idea | ||
.vscode | ||
.history | ||
.\#* | ||
|
||
#ignore mac files | ||
|
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 |
---|---|---|
|
@@ -18,7 +18,6 @@ classifiers = [ | |
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
|
@@ -28,7 +27,7 @@ classifiers = [ | |
] | ||
# SPEC 0 recommends that packages in the scientific pythoniverse support | ||
# versions of Python that have been released in the last ≤36 months | ||
requires-python = ">=3.9" | ||
requires-python = ">=3.10" | ||
dynamic = ["version"] | ||
authors = [ | ||
{name = "Joy Velasquez", email = "[email protected]"}, | ||
|
@@ -94,7 +93,7 @@ Issues = "https://github.com/HinodeXRT/xrtpy/issues" | |
Changelog = "https://xrtpy.readthedocs.io/en/stable/changelog/index.html" | ||
|
||
[tool.ruff] | ||
target-version = "py39" | ||
target-version = "py310" | ||
show-fixes = true | ||
extend-exclude = [ | ||
".jupyter", | ||
|
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