Skip to content

Commit 86fc5ad

Browse files
committed
upversion
1 parent 461036c commit 86fc5ad

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ pydeps
2626
Python module dependency visualization. This package installs the ``pydeps``
2727
command, and normal usage will be to use it from the command line.
2828

29+
Version 1.7.1 fixes excludes in .pydeps files (thanks to @eqvis for the bugreport).
30+
2931
New in version 1.7.0: The new ``--reverse`` flag reverses the direction of the arrows in the dependency graph, so they point _to_ the imported module instead of _from_ the imported module (thanks to @goetzk for the bugreport and @tobiasmaier for the PR!).
3032

3133
New in version 1.5.0: Python 3 support (thanks to @eight04 for the PR)

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '1.7.0'
51+
version = '1.7.1'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '1.7.0'
53+
release = '1.7.1'
5454

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

pydeps/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
Python module dependency visualization. This package installs the ``pydeps``
44
command, and normal usage will be to use it from the command line.
55
"""
6-
__version__ = "1.7.0"
6+
__version__ = "1.7.1"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from distutils.core import setup
1212
from setuptools.command.test import test as TestCommand
1313

14-
version='1.7.0'
14+
version='1.7.1'
1515

1616

1717
class PyTest(TestCommand):

0 commit comments

Comments
 (0)