From 7e742cbe1eb905dbcf41fcab079a5b3ef9fc6e60 Mon Sep 17 00:00:00 2001 From: Bjorn Pettersen Date: Wed, 1 Jan 2025 15:47:07 +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 103f040..1141456 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: 2.0.1 + version: 3.0.0 created: 2014 build: diff --git a/docs/conf.py b/docs/conf.py index ccc0e40..d213a48 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,9 +54,9 @@ # built documents. # # The short X.Y version. -version = '2.0.1' +version = '3.0.0' # The full version, including alpha/beta/rc tags. -release = '2.0.1' +release = '3.0.0' # 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 7ed0cd2..9152d8d 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__ = "2.0.1" +__version__ = "3.0.0" diff --git a/setup.py b/setup.py index f62bb47..ba4b255 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ import setuptools from setuptools.command.test import test as TestCommand -version='2.0.1' +version='3.0.0' class PyTest(TestCommand):