Remove hashes from constraint files

This commit is contained in:
Joe Rickerby
2020-03-07 18:31:39 +00:00
parent 2f1ec582e9
commit ad1b59febf
5 changed files with 53 additions and 211 deletions
-2
View File
@@ -14,7 +14,6 @@ os.environ['CUSTOM_COMPILE_COMMAND'] = "bin/update_constraints"
subprocess.check_call([
'pip-compile',
'--allow-unsafe',
'--generate-hashes',
'--upgrade',
'cibuildwheel/resources/constraints.in',
])
@@ -22,7 +21,6 @@ for python_version in ['27', '35', '36']:
subprocess.check_call([
f'./env{python_version}/bin/pip-compile',
'--allow-unsafe',
'--generate-hashes',
'--upgrade',
'cibuildwheel/resources/constraints.in',
'--output-file', f'cibuildwheel/resources/constraints-python{python_version}.txt'