Fix zipapp
Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com> Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
This commit is contained in:
parent
ecc1cb7d4a
commit
c0ba7809fb
4 changed files with 11 additions and 9 deletions
2
.github/workflows/check.yml
vendored
2
.github/workflows/check.yml
vendored
|
|
@ -189,7 +189,7 @@ jobs:
|
|||
- name: Build sdist and wheel
|
||||
run: python -m build -s -w . -o dist
|
||||
- name: Publish to PyPi
|
||||
uses: pypa/gh-action-pypi-publish@main
|
||||
uses: pypa/gh-action-pypi-publish@v1.5.1
|
||||
with:
|
||||
skip_existing: true
|
||||
user: __token__
|
||||
|
|
|
|||
|
|
@ -12,9 +12,13 @@ repos:
|
|||
- id: end-of-file-fixer
|
||||
- id: trailing-whitespace
|
||||
- repo: https://github.com/asottile/pyupgrade
|
||||
rev: v2.37.1
|
||||
rev: v2.37.2
|
||||
hooks:
|
||||
- id: pyupgrade
|
||||
args: ["--py36-plus"]
|
||||
exclude: "^(src/virtualenv/create/via_global_ref/_virtualenv.py|src/virtualenv/create/via_global_ref/builtin/python2/site.py|src/virtualenv/discovery/py_info.py|tasks/__main__zipapp.py)$"
|
||||
- id: pyupgrade
|
||||
files: "^(src/virtualenv/create/via_global_ref/_virtualenv.py|src/virtualenv/create/via_global_ref/builtin/python2/site.py|src/virtualenv/discovery/py_info.py|tasks/__main__zipapp.py)$"
|
||||
- repo: https://github.com/PyCQA/isort
|
||||
rev: 5.10.1
|
||||
hooks:
|
||||
|
|
@ -39,10 +43,10 @@ repos:
|
|||
- id: tox-ini-fmt
|
||||
args: ["-p", "fix_lint"]
|
||||
- repo: https://github.com/asottile/setup-cfg-fmt
|
||||
rev: v1.20.1
|
||||
rev: v1.20.2
|
||||
hooks:
|
||||
- id: setup-cfg-fmt
|
||||
args: [--min-py3-version, "3.5", "--max-py-version", "3.10"]
|
||||
args: [--min-py3-version, "3.6 ", "--max-py-version", "3.10"]
|
||||
- repo: https://github.com/PyCQA/flake8
|
||||
rev: "4.0.1"
|
||||
hooks:
|
||||
|
|
|
|||
|
|
@ -18,10 +18,8 @@ classifiers =
|
|||
Operating System :: MacOS :: MacOS X
|
||||
Operating System :: Microsoft :: Windows
|
||||
Operating System :: POSIX
|
||||
Programming Language :: Python :: 2
|
||||
Programming Language :: Python :: 2.7
|
||||
Programming Language :: Python :: 3
|
||||
Programming Language :: Python :: 3.5
|
||||
Programming Language :: Python :: 3 :: Only
|
||||
Programming Language :: Python :: 3.6
|
||||
Programming Language :: Python :: 3.7
|
||||
Programming Language :: Python :: 3.8
|
||||
|
|
@ -45,7 +43,7 @@ install_requires =
|
|||
platformdirs>=2,<3
|
||||
importlib-metadata>=0.12;python_version<"3.8"
|
||||
importlib-resources>=1.0;python_version<"3.7"
|
||||
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
|
||||
python_requires = >=3.6
|
||||
package_dir =
|
||||
=src
|
||||
zip_safe = True
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ from packaging.requirements import Requirement
|
|||
|
||||
HERE = Path(__file__).parent.absolute()
|
||||
|
||||
VERSIONS = [f"3.{i}" for i in range(10, 4, -1)] + ["2.7"]
|
||||
VERSIONS = [f"3.{i}" for i in range(10, 5, -1)]
|
||||
|
||||
|
||||
def main():
|
||||
|
|
|
|||
Loading…
Reference in a new issue