Skip to content

Commit 2bb1358

Browse files
committed
Refresh Python dependencies
1 parent d240cd9 commit 2bb1358

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"
88
setuptools>=65.3.0;python_version>="3.7"
99
tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"
1010
tomli>=2.0.1;python_version>="3.7"
11+
tqdm>=4.64.1
1112
wheel>=0.37.1
1213
attrs>=21.4.0;python_version<"3.6"
1314
attrs>=22.1.0;python_version>="3.6"
@@ -68,7 +69,7 @@ py==1.8.1;python_version<"3.6"
6869
py==1.11.0;python_version>="3.6"
6970
pytest==4.6.11;python_version<"3.6"
7071
pytest==7.0.1;python_version>="3.6" and python_version<"3.7"
71-
pytest==7.1.2;python_version>="3.7"
72+
pytest==7.1.3;python_version>="3.7"
7273
pytest-forked==1.3.0;python_version<"3.6"
7374
pytest-forked==1.4.0;python_version>="3.6"
7475
pytest-html==1.22.1;python_version<"3.6"
@@ -96,7 +97,7 @@ cryptography==37.0.4;python_version>="3.7"
9697
pygments==2.5.2;python_version<"3.6"
9798
pygments==2.13.0;python_version>="3.6"
9899
prompt-toolkit==1.0.18;python_version<"3.6"
99-
prompt-toolkit==3.0.30;python_version>="3.6"
100+
prompt-toolkit==3.0.31;python_version>="3.6"
100101
decorator==4.4.2;python_version<"3.6"
101102
decorator==5.1.1;python_version>="3.6"
102103
ipython==5.10.0;python_version<"3.6"

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
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")
54-
os.system("python -m pip install --upgrade 'tqdm>=4.64.0'")
54+
os.system("python -m pip install --upgrade tqdm")
5555
print("\n*** Rebuilding distribution packages: ***\n")
5656
os.system("python -m build") # Create new tar/wheel
5757
print("\n*** Publishing The Release to PyPI: ***\n")
@@ -134,6 +134,7 @@
134134
'setuptools>=65.3.0;python_version>="3.7"',
135135
'tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"',
136136
'tomli>=2.0.1;python_version>="3.7"',
137+
"tqdm>=4.64.1",
137138
"wheel>=0.37.1",
138139
'attrs>=21.4.0;python_version<"3.6"',
139140
'attrs>=22.1.0;python_version>="3.6"',
@@ -193,7 +194,7 @@
193194
'py==1.11.0;python_version>="3.6"',
194195
'pytest==4.6.11;python_version<"3.6"',
195196
'pytest==7.0.1;python_version>="3.6" and python_version<"3.7"',
196-
'pytest==7.1.2;python_version>="3.7"',
197+
'pytest==7.1.3;python_version>="3.7"',
197198
'pytest-forked==1.3.0;python_version<"3.6"',
198199
'pytest-forked==1.4.0;python_version>="3.6"',
199200
'pytest-html==1.22.1;python_version<"3.6"',
@@ -221,7 +222,7 @@
221222
'pygments==2.5.2;python_version<"3.6"',
222223
'pygments==2.13.0;python_version>="3.6"',
223224
'prompt-toolkit==1.0.18;python_version<"3.6"',
224-
'prompt-toolkit==3.0.30;python_version>="3.6"',
225+
'prompt-toolkit==3.0.31;python_version>="3.6"',
225226
'decorator==4.4.2;python_version<"3.6"',
226227
'decorator==5.1.1;python_version>="3.6"',
227228
'ipython==5.10.0;python_version<"3.6"',

0 commit comments

Comments
 (0)