From 65882197c7deb109def85c6d51469957ffcf82aa Mon Sep 17 00:00:00 2001
From: Peter Somhorst
Date: Wed, 23 Oct 2024 10:54:07 +0200
Subject: [PATCH 1/2] Add config data to package
---
pyproject.toml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/pyproject.toml b/pyproject.toml
index 03045fd0f..564f75b5f 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -89,6 +89,9 @@ command_line = "-m pytest"
include = ["eitprocessing*", "eitprocessing.*"]
exclude = ["tests*", "*tests.*", "*tests"]
+[tool.setuptools.package-data]
+eitprocessing = ["config/*.yaml"]
+
[tool.tox]
legacy_tox_ini = """
[tox]
From acee5124d6c105a902f163bb242d0856e0737925 Mon Sep 17 00:00:00 2001
From: GitHub Actions
Date: Tue, 29 Oct 2024 08:27:57 +0000
Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=201.4.0=20=E2=86=92=201.4.1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
CITATION.cff | 4 ++--
eitprocessing/__init__.py | 2 +-
pyproject.toml | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/CITATION.cff b/CITATION.cff
index a68bc1a58..2f626c275 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -1,6 +1,6 @@
# YAML 1.2
---
-cff-version: "1.4.0"
+cff-version: "1.4.1"
title: "eitprocessing"
authors:
- family-names: Bodor
@@ -41,7 +41,7 @@ authors:
date-released: 2023-03-23
doi: 10.5281/zenodo.7869553
-version: "1.4.0"
+version: "1.4.1"
repository-code: "git@github.com:EIT-ALIVE/eitprocessing"
keywords:
- Mechanical lung ventilation
diff --git a/eitprocessing/__init__.py b/eitprocessing/__init__.py
index 3e8d9f946..bf2561596 100644
--- a/eitprocessing/__init__.py
+++ b/eitprocessing/__init__.py
@@ -1 +1 @@
-__version__ = "1.4.0"
+__version__ = "1.4.1"
diff --git a/pyproject.toml b/pyproject.toml
index 564f75b5f..fa374fb2e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "eitprocessing"
-version = "1.4.0"
+version = "1.4.1"
description = "Processing of lung image data from electrical impedance tomography."
readme = "README.md"
requires-python = ">=3.10"
@@ -171,7 +171,7 @@ isort.known-first-party = ["eitprocessing"]
"docs/*" = ["ALL"]
[tool.bumpversion]
-current_version = "1.4.0"
+current_version = "1.4.1"
[[tool.bumpversion.files]]
filename = "pyproject.toml"