Skip to content

Commit 1ca539e

Browse files
576-Heroku-deployment-hotfix
[DevOps] Allow downgraded setuptools for heroku
2 parents 2c0d471 + 599b780 commit 1ca539e

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
@@ -3,7 +3,7 @@
33
__version__ = "1.1.4" # update VERSION in constants.py
44
__author__ = "Predictive Healthcare @ Penn Medicine"
55

6-
from setuptools import setup, find_namespace_packages
6+
from setuptools import setup, find_packages
77

88

99
setup(
@@ -19,7 +19,7 @@
1919
"Documentation": "https://codeforphilly.github.io/chime/",
2020
},
2121
package_dir={'': 'src'},
22-
packages=find_namespace_packages(where='src', exclude=('tests')),
22+
packages=find_packages(where='src', exclude=('tests')),
2323
install_requires=[
2424
"altair",
2525
"black",

0 commit comments

Comments
 (0)