We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8e6789 commit 9c60543Copy full SHA for 9c60543
2 files changed
setup.py
@@ -44,7 +44,7 @@ def read(*parts):
44
zip_safe=False,
45
entry_points={'console_scripts': ['wagon = wagon:main']},
46
install_requires=[
47
- "wheel>=0.24.0",
+ "wheel==0.29.0",
48
],
49
extras_require={
50
'dist': ['distro>=0.6.0'],
tests/test_wagon.py
@@ -698,7 +698,7 @@ def test_create_archive_from_path_and_validate(self):
698
elif python_version[0] == 2 and python_version[1] == 7:
699
expected_number_of_wheels = 6
700
elif python_version[0] == 2 and python_version[1] == 6:
701
- expected_number_of_wheels = 7
+ expected_number_of_wheels = 6
702
metadata = self._test(
703
result=result,
704
expected_number_of_wheels=expected_number_of_wheels)
0 commit comments