Skip to content

Commit d2b1a2f

Browse files
committed
Change the basic tox.ini to allow overriding the interpreter (so that 64bit interpreter actually gets used on AppVeyor).
1 parent 418d8ab commit d2b1a2f

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ Changelog
33

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

6+
v1.8.1 (2015-07-04)
7+
-------------------
8+
9+
* Change the basic ``tox.ini`` to allow overriding the interpreter (so that 64bit interpreter
10+
actually gets used on AppVeyor).
11+
612
v1.8 (2015-07-03)
713
-----------------
814

{{cookiecutter.repo_name}}/tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ envlist =
2727

2828
[testenv]
2929
basepython =
30-
pypy: pypy
31-
2.6: python2.6
32-
{2.7,docs}: python2.7
33-
3.3: python3.3
34-
3.4: python3.4
30+
pypy: {env:TOXPYTHON:pypy}
31+
2.6: {env:TOXPYTHON:python2.6}
32+
{2.7,docs}: {env:TOXPYTHON:python2.7}
33+
3.3: {env:TOXPYTHON:python3.3}
34+
3.4: {env:TOXPYTHON:python3.4}
3535
{clean,check,report,extension-coveralls,coveralls,codecov}: python3.4
3636
setenv =
3737
PYTHONPATH={toxinidir}/tests

0 commit comments

Comments
 (0)