Skip to content

Commit bd7eff6

Browse files
fix: fix broken deps for PEP 517 (#669)
1 parent c35ec2e commit bd7eff6

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repos:
1010
- id: check-toml
1111
- id: requirements-txt-fixer
1212
- repo: https://github.com/psf/black
13-
rev: 20.8b1
13+
rev: 21.5b0
1414
hooks:
1515
- id: black
1616
- repo: https://github.com/pre-commit/mirrors-mypy

local-requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
auditwheel==3.3.1
1+
auditwheel==4.0.0
22
autobahn==21.3.1
3-
black==20.8b1
3+
black==21.5b0
44
flake8==3.9.1
55
flaky==3.7.0
66
mypy==0.812
@@ -10,16 +10,16 @@ Pillow==8.2.0
1010
pixelmatch==0.2.3
1111
pre-commit==2.10.1
1212
pyOpenSSL==20.0.1
13-
pytest==6.2.2
14-
pytest-asyncio==0.15.0
13+
pytest==6.2.4
14+
pytest-asyncio==0.15.1
1515
pytest-cov==2.11.1
1616
pytest-repeat==0.9.1
1717
pytest-sugar==0.9.4
1818
pytest-timeout==1.4.2
1919
pytest-xdist==2.2.1
2020
requests==2.25.1
2121
service_identity==18.1.0
22-
setuptools==56.0.0
22+
setuptools==56.1.0
2323
twine==3.3.0
2424
twisted==21.2.0
2525
wheel==0.36.2

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build-system]
2-
requires = ["setuptools-scm", "wheel", "auditwheel"]
3-
build-backend = "setuptools.build_meta"
2+
requires = ["setuptools-scm", "wheel==0.36.2", "auditwheel==4.0.0"]
3+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ def run(self) -> None:
120120
with InWheel(
121121
in_wheel=whlfile,
122122
out_wheel=os.path.join("wheelhouse", os.path.basename(whlfile)),
123-
ret_self=True,
124123
):
125124
print("Updating RECORD file of %s" % whlfile)
126125
shutil.rmtree(self.dist_dir)

0 commit comments

Comments
 (0)