Skip to content

Commit

Permalink
Fix appveyor builds (#163)
Browse files Browse the repository at this point in the history
* updates requests==2.12.5

* use >= for dependency
  • Loading branch information
andySigler authored Jan 23, 2017
1 parent bf69c3b commit e32253c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@ environment:

matrix:
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x" # currently 3.4.3
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.0"
PYTHON_VERSION: "3.5.x" # currently 3.5.1
PYTHON_ARCH: "64"

install:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"The Opentrons API is a simple framework designed to make "
"writing automated biology lab protocols easy.")
PACKAGES = find_packages(where='.', exclude=["tests.*", "tests"])
INSTALL_REQUIRES = ['dill==0.2.5', 'requests==2.12.4', 'pyserial==3.2.1']
INSTALL_REQUIRES = ['dill==0.2.5', 'requests>=2.12.4', 'pyserial==3.2.1']
TEST_SUITE = 'nose.collector'

HERE = os.path.abspath(os.path.dirname(__file__))
Expand Down

0 comments on commit e32253c

Please sign in to comment.