Skip to content

Commit 0ed4990

Browse files
authored
Adds some maintenance changes (#179)
* whitelists rm from path * improves code style * increases version
1 parent 01e519b commit 0ed4990

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pyndl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
__author__ = ('Konstantin Sering, Marc Weitz, '
1818
'David-Elias Künstle, Lennard Schneider')
1919
__author_email__ = '[email protected]'
20-
__version__ = '0.6.4'
20+
__version__ = '0.7.0'
2121
__license__ = 'MIT'
2222
__description__ = ('Naive discriminative learning implements learning and '
2323
'classification models based on the Rescorla-Wagner '

tests/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ def pytest_addoption(parser):
99
parser.addoption("--runslow", action="store_true",
1010
help="run slow tests")
1111

12+
1213
def pytest_runtest_setup(item):
1314
if 'runslow' in item.keywords and not item.config.getoption("--runslow"):
1415
pytest.skip("need --runslow option to run this test")

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ envlist = py{35,36}-test, checkstyle, documentation
33

44
[testenv]
55
usedevelop = True
6-
whitelist_externals=/bin/rm
6+
whitelist_externals=rm
77
deps =
88
test: pytest
99
-rrequirements.txt
@@ -13,7 +13,7 @@ commands =
1313

1414
[testenv:testdoc]
1515
usedevelop = True
16-
whitelist_externals=/bin/rm
16+
whitelist_externals=rm
1717
deps =
1818
pytest
1919
commands =

0 commit comments

Comments
 (0)