generated from pdm-project/pdm
-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove support for python 3.7 and older (#232)
* feat: remove support for python 3.7 and older Signed-off-by: Frost Ming <[email protected]> * debug test Signed-off-by: Frost Ming <[email protected]> * debug Signed-off-by: Frost Ming <[email protected]> * fix: remove unused functions Signed-off-by: Frost Ming <[email protected]>
- Loading branch information
Showing
8 changed files
with
29 additions
and
575 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ authors = [ | |
{ name = "Frost Ming", email = "[email protected]" } | ||
] | ||
license = {text = "MIT"} | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.8" | ||
readme = "README.md" | ||
keywords = ["packaging", "PEP 517", "build"] | ||
dynamic = ["version"] | ||
|
@@ -16,11 +16,11 @@ classifiers = [ | |
"Development Status :: 5 - Production/Stable", | ||
"Topic :: Software Development :: Build Tools", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
|
||
dependencies = [ | ||
|
@@ -92,7 +92,7 @@ test = [ | |
|
||
dev = [ | ||
"editables", | ||
"vendoring; python_version ~= '3.8'", | ||
"vendoring", | ||
] | ||
docs = [ | ||
"mkdocs>=1.4.2", | ||
|
Oops, something went wrong.