Skip to content

Commit 9939ca3

Browse files
committed
Refresh Python dependencies
1 parent 26854ba commit 9939ca3

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
pip>=20.3.4;python_version<"3.6"
22
pip>=21.3.1;python_version>="3.6" and python_version<"3.7"
3-
pip>=22.0.2;python_version>="3.7"
3+
pip>=22.0.3;python_version>="3.7"
44
packaging>=20.9;python_version<"3.6"
55
packaging>=21.3;python_version>="3.6"
66
setuptools>=44.1.1;python_version<"3.5"
77
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
88
setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"
9-
setuptools>=60.6.0;python_version>="3.7"
9+
setuptools>=60.7.1;python_version>="3.7"
1010
setuptools-scm>=5.0.2;python_version<"3.6"
1111
setuptools-scm>=6.4.2;python_version>="3.6"
1212
tomli>=1.2.2;python_version>="3.6" and python_version<"3.7"
@@ -116,7 +116,7 @@ toml==0.10.2
116116
Pillow==6.2.2;python_version<"3.5"
117117
Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"
118118
Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"
119-
Pillow==9.0.0;python_version>="3.7"
119+
Pillow==9.0.1;python_version>="3.7"
120120
typing-extensions==3.10.0.2;python_version<"3.6"
121121
typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"
122122
rich==11.1.0;python_version>="3.6.2" and python_version<"4.0"

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
print("\n*** Installing build: *** (Required for PyPI uploads)\n")
5050
os.system("python -m pip install --upgrade 'build>=0.7.0'")
5151
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
52-
os.system("python -m pip install --upgrade 'twine>=3.7.1'")
52+
os.system("python -m pip install --upgrade 'twine>=3.8.0'")
5353
print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
5454
os.system("python -m pip install --upgrade 'tqdm>=4.62.3'")
5555
print("\n*** Rebuilding distribution packages: ***\n")
@@ -125,13 +125,13 @@
125125
install_requires=[
126126
'pip>=20.3.4;python_version<"3.6"',
127127
'pip>=21.3.1;python_version>="3.6" and python_version<"3.7"',
128-
'pip>=22.0.2;python_version>="3.7"',
128+
'pip>=22.0.3;python_version>="3.7"',
129129
'packaging>=20.9;python_version<"3.6"',
130130
'packaging>=21.3;python_version>="3.6"',
131131
'setuptools>=44.1.1;python_version<"3.5"',
132132
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
133133
'setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"',
134-
'setuptools>=60.6.0;python_version>="3.7"',
134+
'setuptools>=60.7.1;python_version>="3.7"',
135135
'setuptools-scm>=5.0.2;python_version<"3.6"',
136136
'setuptools-scm>=6.4.2;python_version>="3.6"',
137137
'tomli>=1.2.2;python_version>="3.6" and python_version<"3.7"',
@@ -241,7 +241,7 @@
241241
'Pillow==6.2.2;python_version<"3.5"',
242242
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"',
243243
'Pillow==8.4.0;python_version>="3.6" and python_version<"3.7"',
244-
'Pillow==9.0.0;python_version>="3.7"',
244+
'Pillow==9.0.1;python_version>="3.7"',
245245
'typing-extensions==3.10.0.2;python_version<"3.6"', # <3.8 for "rich"
246246
'typing-extensions==4.0.0;python_version>="3.6" and python_version<"3.8"', # noqa: E501
247247
'rich==11.1.0;python_version>="3.6.2" and python_version<"4.0"',

0 commit comments

Comments
 (0)