Skip to content

Commit 301a86b

Browse files
committed
Update deploy dependencies
1 parent ddbce05 commit 301a86b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
reply = str(input_method(confirm_text)).lower().strip()
3737
if reply == "yes":
3838
print("\n*** Checking code health with flake8:\n")
39-
os.system("python -m pip install 'flake8==4.0.1'")
39+
os.system("python -m pip install 'flake8==5.0.2'")
4040
flake8_status = os.system("flake8 --exclude=recordings,temp")
4141
if flake8_status != 0:
4242
print("\nWARNING! Fix flake8 issues before publishing to PyPI!\n")
@@ -47,7 +47,7 @@
4747
os.system("rm -f dist/*.egg; rm -f dist/*.tar.gz; rm -f dist/*.whl")
4848
os.system("rm -rf build/bdist.*; rm -rf build/lib")
4949
print("\n*** Installing build: *** (Required for PyPI uploads)\n")
50-
os.system("python -m pip install --upgrade 'build>=0.7.0'")
50+
os.system("python -m pip install --upgrade 'build>=0.8.0'")
5151
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
5252
os.system("python -m pip install --upgrade 'twine>=4.0.1'")
5353
print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")

0 commit comments

Comments
 (0)