Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/thebjorn/pydeps
Browse files Browse the repository at this point in the history
  • Loading branch information
thebjorn committed Mar 18, 2024
2 parents 608e414 + adfa6bc commit 7150e72
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 7 deletions.
13 changes: 12 additions & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,13 @@
version: 2

build:
os: ubuntu-22.04
tools:
python: "3.11"

sphinx:
configuration: docs/conf.py

python:
setup_py_install: true
install:
- requirements: docs/requirements.txt
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,9 @@ eg. the output from ``pydeps --show-deps ..`` looks like this::
Version history
---------------

**Version 1.12.19** Thanks to wiguwbe_ for a PR that fixes an inconsistency with
the ``--no-dot`` flag.

**Version 1.12.13** Better docs for larger packages.
See maximum_module_depth_ for an example.
Thanks to sheromon_ for the PR.
Expand Down Expand Up @@ -498,3 +501,4 @@ Contributing
.. _pawamoy: https://github.com/pawamoy
.. _septatrix: https://github.com/septatrix
.. _sheromon: https://github.com/sheromon
.. _wiguwbe: https://github.com/Wiguwbe
2 changes: 1 addition & 1 deletion dkbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ _schema: https://static.datakortet.no/schema/dkbuild.schema.yaml
package:
name: pydeps
description: Display module dependencies
version: 1.12.18
version: 1.12.19
created: 2014

build:
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = '1.12.18'
version = '1.12.19'
# The full version, including alpha/beta/rc tags.
release = '1.12.18'
release = '1.12.19'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Sphinx>=1.7.6
2 changes: 1 addition & 1 deletion pydeps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
Python module dependency visualization. This package installs the ``pydeps``
command, and normal usage will be to use it from the command line.
"""
__version__ = "1.12.18"
__version__ = "1.12.19"
2 changes: 1 addition & 1 deletion pydeps/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def parse_args(argv=()):
args.add('--deps-output', dest='deps_out', default=None, kind="FNAME:output", help="write output of dependency analysis to 'file'")
args.add('--show-dot', action='store_true', help="show output of dot conversion")
args.add('--dot-output', dest='dot_out', default=None, kind="FNAME:output", help="write dot code to 'file'")
args.add('--nodot', '--no-dot', action='store_true', help="skip dot conversion")
args.add('--nodot', '--no-dot', action='store_true', default=False, dest='no_dot', help="skip dot conversion")
args.add('--no-output', action='store_true', help="don't create .svg/.png file, implies --no-show (-t/-o will be ignored)")
args.add('--show-cycles', action='store_true', help="show only import cycles")
args.add('--debug-mf', default=0, type=int, metavar="INT", help="set the ModuleFinder.debug flag to this value")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import setuptools
from setuptools.command.test import test as TestCommand

version='1.12.18'
version='1.12.19'


class PyTest(TestCommand):
Expand Down

0 comments on commit 7150e72

Please sign in to comment.