Skip to content

Commit

Permalink
Merge pull request #272 from tchaikov/wip-capture
Browse files Browse the repository at this point in the history
tests: support python releases before 3.7
  • Loading branch information
ekalinin authored Apr 9, 2021
2 parents 13f4aef + f65d83b commit 4edf46b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- pypy
install: pip install coveralls tox-travis
script: tox
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Dependency
For nodeenv
^^^^^^^^^^^

* python (2.6+, 3.3+, or pypy)
* python (2.6+, 3.5+, or pypy)
* make
* tail

Expand Down
1 change: 1 addition & 0 deletions tests/nodeenv_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import os.path
import pipes
import shutil
import subprocess
import sys
import sysconfig
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
# These should match the travis env list
envlist = py27,py34,py35,py36,pypy
envlist = py27,py36,py37,pypy

[testenv]
install_command = pip install {opts} {packages}
Expand Down

0 comments on commit 4edf46b

Please sign in to comment.