Skip to content

Commit 119f98a

Browse files
committed
Make setuptools version check less strict
1 parent 2fde432 commit 119f98a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
flake8>=3.8;python_version>="3.5"
2-
setuptools>=49.6;python_version>="3.5"
2+
setuptools;python_version>="3.5"
33
flake8>=2.6,<3.0;python_version=='3.4'
44
flake8>=2.6,<3.0;python_version=='3.3'
5-
setuptools==39.2 ;python_version=='3.4'
6-
setuptools==39.2 ;python_version=='3.3'
5+
setuptools<=39.2 ;python_version=='3.4'
6+
setuptools<=39.2 ;python_version=='3.3'
77
typing>=3.6,<3.7;python_version=='3.4'
88
typing>=3.6,<3.7;python_version=='3.3'
99
flake8>=3.8;python_version<'3'
10-
setuptools>=44.1;python_version<"3"
10+
setuptools<=44.1;python_version<"3"
1111
typing>=3.7;python_version<"3"

0 commit comments

Comments
 (0)