Skip to content

Commit 65bd315

Browse files
committed
- get rid of unnecessary dependencies in setup.py
- try a different approach to installing deps in travis
1 parent 753cf85 commit 65bd315

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ python:
88
- "pypy"
99
install:
1010
- pip install -r dev-requirements.txt
11-
- pip install six
12-
- pip install 'characteristic>=14.0.0'
13-
- pip install sphinx
14-
- pip install effect
11+
- pip install .
1512
script:
1613
- make lint
1714
- py.test

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
'Programming Language :: Python :: 3',
1717
],
1818
packages=['txeffect'],
19-
install_requires=['effect', 'twisted', 'six', 'characteristic>=14.0.0'],
19+
install_requires=['effect', 'twisted'],
2020
)

0 commit comments

Comments
 (0)