Skip to content
Open
Show file tree
Hide file tree
Changes from all 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: 1 addition & 1 deletion pytest_pudb.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def pytest_configure(config):
config.pluginmanager.register(pudb_wrapper, 'pudb_wrapper')

pudb_wrapper.mount()
config._cleanup.append(pudb_wrapper.unmount)
config.add_cleanup(pudb_wrapper.unmount)


class PuDBWrapper(object):
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[flake8]
max-line-length=120
exclude = venv,.tox

[bdist_wheel]
universal = 1
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
author_email='wronglink@gmail.com',
url='https://github.com/wronglink/pytest-pudb',
long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),
version='0.7.0',
version='0.8.0',
py_modules=['pytest_pudb'],
entry_points={'pytest11': ['pudb = pytest_pudb']},
install_requires=[
'pytest>=2.0',
'pytest>=7.0',
'pudb',
],
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py34,py35,py36,py37,flake8
envlist = py26,py27,py34,py35,py36,py37,py313,flake8

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Let's remove the old ones and add the intermediary ones?

Suggested change
envlist = py26,py27,py34,py35,py36,py37,py313,flake8
envlist = py34,py35,py36,py37,py38,py39,py310,py311,py312,py313,flake8


[testenv]
commands =
Expand Down