mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 00:04:42 +04:00
Use importlib.metadata directly in python3.8+
This commit is contained in:
parent
b3582dfd31
commit
f8f81db36d
3 changed files with 12 additions and 7 deletions
10
setup.cfg
10
setup.cfg
|
|
@ -14,10 +14,10 @@ classifiers =
|
|||
Programming Language :: Python :: 2
|
||||
Programming Language :: Python :: 2.7
|
||||
Programming Language :: Python :: 3
|
||||
Programming Language :: Python :: 3.4
|
||||
Programming Language :: Python :: 3.5
|
||||
Programming Language :: Python :: 3.6
|
||||
Programming Language :: Python :: 3.7
|
||||
Programming Language :: Python :: 3.8
|
||||
Programming Language :: Python :: Implementation :: CPython
|
||||
Programming Language :: Python :: Implementation :: PyPy
|
||||
|
||||
|
|
@ -27,15 +27,15 @@ install_requires =
|
|||
aspy.yaml
|
||||
cfgv>=2.0.0
|
||||
identify>=1.0.0
|
||||
importlib-metadata
|
||||
nodeenv>=0.11.1
|
||||
pyyaml
|
||||
six
|
||||
toml
|
||||
virtualenv>=15.2
|
||||
futures; python_version<"3.2"
|
||||
importlib-resources; python_version<"3.7"
|
||||
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
|
||||
futures;python_version<"3.2"
|
||||
importlib-metadata;python_version<"3.8"
|
||||
importlib-resources;python_version<"3.7"
|
||||
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
|
||||
|
||||
[options.entry_points]
|
||||
console_scripts =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue