Skip to content

Commit

Permalink
Updating requirements to fix travis failure
Browse files Browse the repository at this point in the history
  • Loading branch information
smmaurer committed Apr 17, 2020
1 parent 86adbac commit 0f345b2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
9 changes: 0 additions & 9 deletions requirements.txt

This file was deleted.

15 changes: 10 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
from setuptools import setup, find_packages

with open('requirements.txt') as f:
requirements = f.readlines()
requirements = [item.strip() for item in requirements]

setup(
name='urbansim_templates',
version='0.2.dev7',
Expand All @@ -20,5 +16,14 @@
'License :: OSI Approved :: BSD License'
],
packages=find_packages(exclude=['*.tests']),
install_requires=requirements
install_requires=[
'choicemodels >= 0.2.dev4',
'numpy >= 1.14',
'orca >= 1.4',
'pandas >= 0.23',
'patsy >= 0.4',
'statsmodels >= 0.8, <0.11; python_version <"3.6"',
'statsmodels >= 0.8; python_version >="3.6"'
'urbansim >= 3.1'
]
)

0 comments on commit 0f345b2

Please sign in to comment.