From aee06de41629ac97f75f937b4c5f509858aac138 Mon Sep 17 00:00:00 2001 From: thebjorn Date: Mon, 22 Jan 2024 12:44:47 +0100 Subject: [PATCH] tagged-upversion --- dkbuild.yml | 2 +- docs/conf.py | 4 ++-- pydeps/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dkbuild.yml b/dkbuild.yml index bfe18b4..a230ac5 100644 --- a/dkbuild.yml +++ b/dkbuild.yml @@ -3,7 +3,7 @@ _schema: https://static.datakortet.no/schema/dkbuild.schema.yaml package: name: pydeps description: Display module dependencies - version: 1.12.17 + version: 1.12.18 created: 2014 build: diff --git a/docs/conf.py b/docs/conf.py index 3778717..7bb5889 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,9 +54,9 @@ # built documents. # # The short X.Y version. -version = '1.12.17' +version = '1.12.18' # The full version, including alpha/beta/rc tags. -release = '1.12.17' +release = '1.12.18' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pydeps/__init__.py b/pydeps/__init__.py index 04ee8a8..19f5391 100644 --- a/pydeps/__init__.py +++ b/pydeps/__init__.py @@ -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.17" +__version__ = "1.12.18" diff --git a/setup.py b/setup.py index 371188f..b54782a 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ import setuptools from setuptools.command.test import test as TestCommand -version='1.12.17' +version='1.12.18' class PyTest(TestCommand):