Skip to content

Commit 797d31b

Browse files
committed
-
1 parent 238a307 commit 797d31b

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ python:
55
- 3.6
66
- 3.7
77
- 3.8-dev
8-
- pypy3.6-alpha
8+
#- pypy3.6-alpha
99

1010
install:
1111
- pip install tox-travis

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
# built documents.
4646
#
4747
# The short X.Y version.
48-
version = '1.0.4'
48+
version = '1.0.5'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '1.0.4'
50+
release = '1.0.5'
5151

5252
# The language for content autogenerated by Sphinx. Refer to documentation
5353
# for a list of supported languages.

python_toolbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import python_toolbox.monkeypatch_copyreg
1616
import python_toolbox.monkeypatch_envelopes
1717

18-
__version__ = '1.0.4'
18+
__version__ = '1.0.5'
1919
__version_info__ = python_toolbox.version_info.VersionInfo(
2020
*(map(int, __version__.split('.')))
2121
)

test_python_toolbox/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
'''Testing package for `python_toolbox`.'''
55

66
import sys
7+
import os
78
import pathlib
89
import importlib
910

@@ -29,6 +30,7 @@ def __bootstrap():
2930

3031
def invoke_tests():
3132
'''Start Pytest using this `test_python_toolbox` test package.'''
33+
os.chdir(os.path.dirname(__file__))
3234
pytest.main()
3335
# nose.run(defaultTest='test_python_toolbox',
3436
# argv=(arguments + sys.argv[1:]))

0 commit comments

Comments
 (0)