-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Adjust requirements to default to click7, but allow flex with click 6.7 - Try adding python 3.7 to test matrix on travis
- Loading branch information
1 parent
84a4d53
commit a2ba2c8
Showing
8 changed files
with
41 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
-e .[dev,ssv,osv,icu] | ||
-e .[dev,ssv,osv,icu,cli] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-e .[dev] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
-e .[dev,icu] | ||
-e .[dev,flex,icu] | ||
click~=6.7 # for flex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
-e .[dev,ssv,osv] | ||
-e .[dev,ssv,osv,cli] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
-e .[dev,ssv] | ||
-e .[dev,ssv,cli] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
[tox] | ||
envlist = py{27,35}-{icu,no_icu} | ||
envlist = py{27,36}-{icu,no_icu} | ||
|
||
[travis] | ||
python = | ||
pypy: pypy-{no_osv_or_icu} | ||
2.7: py27-{no_osv_or_icu} | ||
3.4: py34-{no_icu} | ||
3.5: py35-{icu,no_icu,flex_only} | ||
3.6: py36-{no_icu} | ||
3.5: py35-{no_icu} | ||
3.6: py36-{icu,no_icu,flex} | ||
3.7: py37-{no_icu} | ||
|
||
[testenv] | ||
# Different dependencies for environments with and without ICU | ||
deps = | ||
icu: -r{toxinidir}/requirements.txt | ||
no_icu: -r{toxinidir}/requirements_no_icu.txt | ||
flex_only: -r{toxinidir}/requirements_flex_only.txt | ||
no_osv_or_icu: -r{toxinidir}/requirements_no_osv_or_icu.txt | ||
flex: -r{toxinidir}/requirements_flex.txt | ||
bare: -r{toxinidir}/requirements_bare.txt | ||
# We need to set environment variables for py3 to work with click | ||
setenv = | ||
LC_ALL=C.UTF-8 | ||
LANG=C.UTF-8 | ||
# For Python 3.5 (main dev version), also run flake8 and sphinx | ||
# For Python 3.6 (main dev version), also run flake8 and sphinx | ||
commands = | ||
py{27,34,36,py}: python setup.py test | ||
py35: python setup.py test flake8 build_sphinx | ||
py{27,34,35,37,py}: python setup.py test | ||
py36: python setup.py test flake8 build_sphinx |