Skip to content

Commit 53c7707

Browse files
author
Pedro Crespo
committed
Fixes import failure of trafaret and updages vs sqalquemy
1 parent a27a279 commit 53c7707

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

packages/simcore-sdk/setup.py

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
from setuptools import setup
1+
from setuptools import (
2+
setup,
3+
find_packages
4+
)
25

36
INSTALL_REQUIRES = [
47
'networkx==2.1',
58
'psycopg2==2.7.4',
69
'sqlalchemy==1.2.8',
7-
'tenacity==4.12.0'
10+
'tenacity==4.12.0',
811
'trafaret-config==2.0.1'
912
]
1013

@@ -21,11 +24,13 @@
2124
setup(
2225
name='simcore-sdk',
2326
version='0.1.0',
24-
package_dir={'': 'src'},
25-
packages=['simcore_sdk'],
27+
packages=find_packages(where='src'),
28+
package_dir={
29+
'': 'src',
30+
},
2631
python_requires='>=3.6',
27-
INSTALL_REQUIRES=INSTALL_REQUIRES,
28-
TEST_REQUIRE=TEST_REQUIRE,
32+
install_requires=INSTALL_REQUIRES,
33+
tests_require=TEST_REQUIRE,
2934
extras_require= {
3035
'test': TEST_REQUIRE
3136
},

services/web/server/requirements/base.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ passlib==1.7.1
1515
# psycopg2-binary~=2.7
1616
python-socketio==1.9.0
1717
requests==2.19.0
18-
sqlalchemy==1.2.8
18+
sqlalchemy==1.2.9
1919
tenacity==4.12.0
2020
trafaret-config==2.0.1

0 commit comments

Comments
 (0)