Skip to content

Commit 4a92d8a

Browse files
Updates the travis build to install pyserial from GitHub.
1 parent 079fcb9 commit 4a92d8a

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ python:
77
- 3.4
88
- 3.5
99

10+
install:
11+
- pip install -r requirements-travis.txt
12+
1013
script:
11-
- python setup.py install
1214
- python test/test_asyncio.py loop://

requirements-travis.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Depend on the head of pyserial
2+
git+https://github.com/pyserial/pyserial.git#egg=pyserial
3+
4+
# OR
5+
6+
# Depend on a specific pyserial commit
7+
# git+https://github.com/pyserial/pyserial.git@000b14389171a9f0d7d713466b32bc649b0bed8e#egg=pyserial

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pyserial>=3.1.1

0 commit comments

Comments
 (0)