Skip to content

Commit

Permalink
fix testing with Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
taleinat committed Jan 15, 2020
1 parent c73e968 commit a19cd59
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tox.ini
Expand Up @@ -3,7 +3,7 @@ envlist = py{27,34,35,36,37,38}-{with,without}_coverage-{,appveyor}

[testenv]
install_command =
pip install -vvv {opts} {packages}
{envpython} -m pip install -vvv {opts} {packages}
; setenv =
; ; The following two flags are a workaround for an issue with building
; ; Python extensions on OSX with xcode 5.1.
Expand All @@ -17,6 +17,12 @@ deps =
py{27}: unittest2==1.1.0
py{27}: mock==1.3.0
py{27}: biopython<=1.76
py{34}: setuptools<44
py{34}: pip<19.2
; biopython 1.74 has numpy as a dependency, but the version must be
; limited to work on Python 3.4. (i.e `pip install numpy` no longer works
; on Python 3.4!)
py{34}: numpy<1.16
py{34}: biopython<=1.74
py{35}: biopython<=1.76
py{36,37,38}: biopython
Expand Down

0 comments on commit a19cd59

Please sign in to comment.