Skip to content

Commit

Permalink
Preparing release 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 11, 2020
1 parent 085cce3 commit 427a01f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Changes

.. currentmodule:: objgraph

3.5.0 (unreleased)
3.5.0 (2020-10-11)
------------------

- Do not require ``mock`` for the test suite on Python 3; use unittest.mock
Expand Down
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ endef

.PHONY: coverage
coverage: ##: measure test coverage
python2 -m coverage run tests.py
python3 -m coverage run -a tests.py
coverage report -m --fail-under=100
tox -e coverage2,coverage3

.PHONY: flake8
flake8: ##: check for style problems
Expand Down
4 changes: 2 additions & 2 deletions objgraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
__author__ = "Marius Gedminas (marius@gedmin.as)"
__copyright__ = "Copyright (c) 2008-2017 Marius Gedminas and contributors"
__license__ = "MIT"
__version__ = '3.4.2.dev0'
__date__ = '2019-04-23'
__version__ = '3.5.0'
__date__ = '2020-10-11'


try:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ deps =
coverage-python-version
commands =
coverage run tests.py
coverage report -m
coverage report -m --fail-under=100

[testenv:coverage2]
basepython = python2
Expand Down

0 comments on commit 427a01f

Please sign in to comment.