Skip to content

Commit

Permalink
Merge pull request #204 from stefanbschneider/dev
Browse files Browse the repository at this point in the history
Fix and upgrade dependencies
  • Loading branch information
stefanbschneider authored May 21, 2022
2 parents 6c3da71 + d1c5f71 commit 1566fc1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Simulate flow-level, inter-node network coordination including scaling and place

## Setup

Requires Python 3.6. Install with (ideally using [virtualenv](https://virtualenv.pypa.io/en/stable/)):
Requires **Python 3.6** (newer versions do not support the required TF 1.14). Install with (ideally using [virtualenv](https://virtualenv.pypa.io/en/stable/)):

```bash
pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
--editable git://github.com/RealVNF/common-utils#egg=common-utils
--editable git+https://github.com/RealVNF/common-utils#egg=common-utils
--editable .
18 changes: 6 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
from setuptools import setup, find_packages
requirements = [
'scipy==1.5.4',
'simpy>=4',
'networkx==2.4',
'geopy',
'pyyaml>=5.1',
'numpy>=1.16.5',
'numpy>=1.16.5,<=1.19.5',
'common-utils',
'cython', # otherwise sklearn fails
'sklearn',
'pandas',
'scikit-learn',
'pandas==1.1.5',
'tensorflow==1.14.0',
'keras==2.2.5',
'matplotlib',
Expand All @@ -19,22 +19,16 @@
'nose2'
]

dependency_links = [
'git+https://github.com/RealVNF/common-utils'
]

setup(
name='coord-sim',
version='2.1.0',
version='2.1.1',
description='Simulate flow-level, inter-node network coordination including scaling and placement of services and '
'scheduling/balancing traffic between them.',
url='https://github.com/RealVNF/coord-sim',
author='Stefan Schneider',
dependency_links=dependency_links,
author_email='stefan.schneider@upb.de',
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=requirements + test_requirements,
install_requires=requirements,
tests_require=test_requirements,
zip_safe=False,
entry_points={
Expand Down

0 comments on commit 1566fc1

Please sign in to comment.