Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit cb90716

Browse files
committed
Revert dependencies change for ci
1 parent f94d8d5 commit cb90716

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ FROM python:alpine
22
33
COPY . /ais
44
WORKDIR /ais
5-
RUN pip install -r requirements.txt
5+
RUN pip install -e .
66
CMD ["ais"]

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-e .
1+
-e .[dev]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def version():
4646
setup_requires=['pytest-runner', 'wheel', 'setuptools_scm'],
4747
extras_require={
4848
"dev": TESTS_REQ + CODE_QUALITY_REQ,
49-
"ci": ["tox==2.9.1", "tox-travis"] + TESTS_REQ + CODE_QUALITY_REQ,
49+
"ci": ["tox==2.9.1", "tox-travis"],
5050
},
5151
tests_require=TESTS_REQ,
5252
entry_points={"console_scripts": ['ais=ais:main']},

0 commit comments

Comments
 (0)