Unified versioning information and bumped version to 0.20.
Build Debian Packages / build (trixie, debian13) (push) Successful in 13m44s
Build Debian Packages / build (bookworm, debian12) (push) Successful in 13m54s
Build Debian Packages / build (bullseye, debian11) (push) Has been cancelled

Now we only need to change src/damaris/__init__.py and use dch -v
$VERSION to make a new version.
This commit is contained in:
2026-07-04 16:36:29 +02:00
parent efb15606c6
commit 25217f73fe
6 changed files with 19 additions and 7 deletions
+7
View File
@@ -1,3 +1,10 @@
python3-damaris (0.20) stable; urgency=medium
* Unified version management across Python app, GUI and documentation
* version bump
-- Markus Rosenstihl <markus.rosenstihl@pkm.tu-darmstadt.de> Sat, 04 Jul 2026 16:33:31 +0200
python3-damaris (0.19) stable; urgency=medium python3-damaris (0.19) stable; urgency=medium
* JBs python3-damaris code adapted to new python3 syntax * JBs python3-damaris code adapted to new python3 syntax
+2 -2
View File
@@ -1,2 +1,2 @@
python3-damaris_0.19_all.deb science optional python3-damaris_0.20_all.deb science optional
python3-damaris_0.19_amd64.buildinfo science optional python3-damaris_0.20_amd64.buildinfo science optional
+4 -3
View File
@@ -3,7 +3,8 @@
# For the full list of built-in configuration values, see the documentation: # For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html # https://www.sphinx-doc.org/en/master/usage/configuration.html
import sys,os import sys,os
#sys.path.insert(0, os.path.abspath('../src')) sys.path.insert(0, os.path.abspath('../src'))
import damaris
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
@@ -12,8 +13,8 @@ project = 'DAMARIS'
copyright = '2026, Markus Rosenstihl' copyright = '2026, Markus Rosenstihl'
author = 'Markus Rosenstihl' author = 'Markus Rosenstihl'
version = '0.19' version = damaris.__version__
release = '0.19' release = damaris.__version__
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
+4 -1
View File
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
requires-python = ">= 3.9" requires-python = ">= 3.9"
name = "python3-damaris" name = "python3-damaris"
version = "0.19" dynamic = ["version"]
description = "Python version 3 frontend for DAMARIS (DArmstadt MAgnetic Resonance Instrument Software)" description = "Python version 3 frontend for DAMARIS (DArmstadt MAgnetic Resonance Instrument Software)"
license = {text = "GPL-2.0"} license = {text = "GPL-2.0"}
keywords = ["NMR", "data-processing"] keywords = ["NMR", "data-processing"]
@@ -41,6 +41,9 @@ where = ["src"]
[tool.setuptools.package-data] [tool.setuptools.package-data]
"damaris.gui" = ["DAMARIS3.png", "DAMARIS3.ico", "damaris.xml", "python.xml", "damaris3.glade"] "damaris.gui" = ["DAMARIS3.png", "DAMARIS3.ico", "damaris.xml", "python.xml", "damaris3.glade"]
[tool.setuptools.dynamic]
version = {attr = "damaris.__version__"}
[tool.setuptools.data-files] [tool.setuptools.data-files]
"share/python3-damaris/images" = ["src/damaris/gui/DAMARIS3.png", "src/damaris/gui/DAMARIS3.ico"] "share/python3-damaris/images" = ["src/damaris/gui/DAMARIS3.png", "src/damaris/gui/DAMARIS3.ico"]
#"share/python3-damaris/doc" = ["doc/index.html"] #"share/python3-damaris/doc" = ["doc/index.html"]
+1
View File
@@ -15,4 +15,5 @@
## module contents ## module contents
# #
__version__ = "0.20"
__all__=["experiments", "data", "gui"] __all__=["experiments", "data", "gui"]
+1 -1
View File
@@ -67,7 +67,7 @@ from damaris.data import DataPool, Accumulation, ADC_Result, MeasurementResult
debug = False debug = False
# version info # version info
__version__ = "0.19" from damaris import __version__
class logstream: class logstream: