Skip to content

Commit e32253c

Browse files
authored
Fix appveyor builds (#163)
* updates requests==2.12.5 * use >= for dependency
1 parent bf69c3b commit e32253c

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

appveyor.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ environment:
77

88
matrix:
99
- PYTHON: "C:\\Python35-x64"
10-
PYTHON_VERSION: "3.5.x" # currently 3.4.3
11-
PYTHON_ARCH: "64"
12-
13-
- PYTHON: "C:\\Python35-x64"
14-
PYTHON_VERSION: "3.5.0"
10+
PYTHON_VERSION: "3.5.x" # currently 3.5.1
1511
PYTHON_ARCH: "64"
1612

1713
install:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"The Opentrons API is a simple framework designed to make "
3030
"writing automated biology lab protocols easy.")
3131
PACKAGES = find_packages(where='.', exclude=["tests.*", "tests"])
32-
INSTALL_REQUIRES = ['dill==0.2.5', 'requests==2.12.4', 'pyserial==3.2.1']
32+
INSTALL_REQUIRES = ['dill==0.2.5', 'requests>=2.12.4', 'pyserial==3.2.1']
3333
TEST_SUITE = 'nose.collector'
3434

3535
HERE = os.path.abspath(os.path.dirname(__file__))

0 commit comments

Comments
 (0)