From 6be9c1e49c114b13c1cfeb7d3f6d15a606e616b0 Mon Sep 17 00:00:00 2001 From: Bjorn Pettersen Date: Fri, 26 May 2023 02:01:10 +0200 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 cfb9c63..1810296 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.7 + version: 1.12.8 created: 2014 build: diff --git a/docs/conf.py b/docs/conf.py index 86fac61..f6244d4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,9 +54,9 @@ # built documents. # # The short X.Y version. -version = '1.12.7' +version = '1.12.8' # The full version, including alpha/beta/rc tags. -release = '1.12.7' +release = '1.12.8' # 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 47084b0..23f8ae8 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.7" +__version__ = "1.12.8" diff --git a/setup.py b/setup.py index 5cab176..e894db3 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ import setuptools from setuptools.command.test import test as TestCommand -version='1.12.7' +version='1.12.8' class PyTest(TestCommand):