8000 py26 has fixed dependencies by ioggstream · Pull Request #218 · prometheus/client_python · GitHub
[go: up one dir, main page]

Skip to content

py26 has fixed dependencies #218

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 5, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@ deps =
coverage
pytest

[testenv:py26]
; Last pytest and py version supported on py26 .
deps =
unittest2
py==1.4.31
pytest==2.9.2
coverage

[testenv]
deps =
{[base]deps}
py26: unittest2
; Twisted does not support Python 2.6.
{py27,py34,py35,py36,pypy}: twisted
commands = coverage run --parallel -m pytest {posargs}

Expand Down
0