Skip to content

Commit

Permalink
Blacklist setuptools 50.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
exhuma committed Aug 31, 2020
1 parent 89dda6f commit 86b780b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

from setuptools import find_packages, setup
from setuptools import setup

PACKAGE = "config_resolver"
NAME = "config_resolver"
Expand All @@ -9,7 +9,9 @@
AUTHOR_EMAIL = "[email protected]"
VERSION = open("config_resolver/version.txt").read().strip()

DEPENDENCIES = [] # type: ignore
DEPENDENCIES = [
"setuptools != 50.0.0"
]
if sys.version_info < (3, 0):
DEPENDENCIES.append('typing')

Expand All @@ -25,7 +27,6 @@
include_package_data=True,
packages=['config_resolver'],
install_requires=DEPENDENCIES,
requires=DEPENDENCIES,
package_data={
'config_resolver': ['py.typed'],
},
Expand Down

0 comments on commit 86b780b

Please sign in to comment.