Skip to content

Commit 99ec92c

Browse files
committed
upversion
1 parent 0770514 commit 99ec92c

File tree

5 files changed

+18
-14
lines changed

5 files changed

+18
-14
lines changed

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,9 @@ eg. the output from ``pydeps --show-deps ..`` looks like this::
281281
Version history
282282
---------------
283283

284+
**Version 1.9.14** Thanks to poneill_ for fixing a cryptic error message when
285+
run in a directory without an ``__init__.py`` file.
286+
284287
**Version 1.9.13** Thanks to glumia_ and SimonBiggs_ for improving the documentation.
285288

286289
**Version 1.9.10** ``no_show`` is now honored when placed in ``.pydeps`` file.
@@ -403,3 +406,4 @@ Contributing
403406
.. _romain-dartigues: https://github.com/romain-dartigues
404407
.. _glumia: https://github.com/glumia
405408
.. _SimonBiggs: https://github.com/SimonBiggs
409+
.. _poneill: https://github.com/poneill

dkbuild.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
_schema: https://static.datakortet.no/schema/dkbuild.schema.yaml
2-
3-
package:
4-
name: pydeps
5-
description: Display module dependencies
6-
version: 1.9.13
7-
created: 2014
8-
9-
build:
10-
venv: pydeps
1+
_schema: https://static.datakortet.no/schema/dkbuild.schema.yaml
2+
3+
package:
4+
name: pydeps
5+
description: Display module dependencies
6+
version: 1.9.14
7+
created: 2014
8+
9+
build:
10+
venv: pydeps

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
# built documents.
5555
#
5656
# The short X.Y version.
57-
version = '1.9.13'
57+
version = '1.9.14'
5858
# The full version, including alpha/beta/rc tags.
59-
release = '1.9.13'
59+
release = '1.9.14'
6060

6161
# The language for content autogenerated by Sphinx. Refer to documentation
6262
# 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.9.13"
6+
__version__ = "1.9.14"

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.9.13'
14+
version='1.9.14'
1515

1616

1717
class PyTest(TestCommand):

0 commit comments

Comments
 (0)