Skip to content

Commit

Permalink
Change the basic tox.ini to allow overriding the interpreter (so …
Browse files Browse the repository at this point in the history
…that 64bit interpreter actually gets used on AppVeyor).
  • Loading branch information
ionelmc committed Jul 4, 2015
1 parent 418d8ab commit d2b1a2f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ Changelog

Use cookiecutter's ``--checkout`` options to use a specific version.

v1.8.1 (2015-07-04)
-------------------

* Change the basic ``tox.ini`` to allow overriding the interpreter (so that 64bit interpreter
actually gets used on AppVeyor).

v1.8 (2015-07-03)
-----------------

Expand Down
10 changes: 5 additions & 5 deletions {{cookiecutter.repo_name}}/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ envlist =

[testenv]
basepython =
pypy: pypy
2.6: python2.6
{2.7,docs}: python2.7
3.3: python3.3
3.4: python3.4
pypy: {env:TOXPYTHON:pypy}
2.6: {env:TOXPYTHON:python2.6}
{2.7,docs}: {env:TOXPYTHON:python2.7}
3.3: {env:TOXPYTHON:python3.3}
3.4: {env:TOXPYTHON:python3.4}
{clean,check,report,extension-coveralls,coveralls,codecov}: python3.4
setenv =
PYTHONPATH={toxinidir}/tests
Expand Down

0 comments on commit d2b1a2f

Please sign in to comment.