Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ include/
lib/
.Python
bumpversion.egg-info/
.pytest_cache/
tests/__pycache__/
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not just __pycache__/?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ env:
- TOX_ENV=py32
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=py36
- TOX_ENV=pypy
install:
- git config --global user.email "bumpversion-test-git@travis.ci"
Expand Down
Binary file not shown.
Binary file added bumpversion/__pycache__/functions.cpython-36.pyc
Binary file not shown.
Binary file not shown.
2 changes: 2 additions & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pytest==3.6.0
tox==3.0.0
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
),
)
14 changes: 11 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
[tox]
envlist = py34, py33, py32, py27, py27-configparser, pypy
envlist = py36, py35, py34, py33, py32, py27, py27-configparser, pypy

[testenv]
passenv = HOME
deps=
distribute
pytest
mock
basepython=
py36: python3.6
py35: python3.5
py34: python3.4
py33: python3.3
py32: python3.2
py27: python2.7
pypy: pypy
commands=
py.test [] tests

[testenv:py27-configparser]
basepython= python2.7
basepython = python2.7
deps=
distribute
pytest
mock
configparser