From dcd34e436f6d7b9d3731599edf6618d74a13c0b1 Mon Sep 17 00:00:00 2001 From: Gavin Huttley Date: Mon, 26 Aug 2024 08:49:08 +1000 Subject: [PATCH 1/4] REL: set version as 2024.8.26a1 --- src/divergent/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/divergent/__init__.py b/src/divergent/__init__.py index a30d25e..6623091 100644 --- a/src/divergent/__init__.py +++ b/src/divergent/__init__.py @@ -4,4 +4,4 @@ # found by h5py import hdf5plugin # noqa -__version__ = "2024.8" +__version__ = "2024.8.26a1" From 56d5450e36cd7adddcbe62b9edf8481837d153c8 Mon Sep 17 00:00:00 2001 From: Gavin Huttley Date: Mon, 26 Aug 2024 08:51:59 +1000 Subject: [PATCH 2/4] DOC: added project metadata --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 3cc9561..f2f4b55 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,6 +34,11 @@ classifiers = [ # the following are inferred from the source code dynamic = ["version", "description"] +[project.urls] +Documentation = "https://github.com/HuttleyLab/Divergent" +"Bug Tracker" = "https://github.com/HuttleyLab/Divergent/issues" +"Source Code" = "https://github.com/HuttleyLab/Divergent/" + [project.sdist] include = ["doc/", "requirements.txt", "src/*", "pyproject.toml"] exclude = ["doc/*.html"] From 8feec8f6fe330bf073fc20eefa3dc486d99fa7f3 Mon Sep 17 00:00:00 2001 From: Gavin Huttley Date: Mon, 26 Aug 2024 08:53:45 +1000 Subject: [PATCH 3/4] REL: address flit issue with pyproject --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f2f4b55..4563c06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,8 +40,7 @@ Documentation = "https://github.com/HuttleyLab/Divergent" "Source Code" = "https://github.com/HuttleyLab/Divergent/" [project.sdist] -include = ["doc/", "requirements.txt", "src/*", "pyproject.toml"] -exclude = ["doc/*.html"] +include = ["src/*", "pyproject.toml"] [project.scripts] dvgt = "divergent.cli:main" From 0580ca32a0ac1dcd71b010b979ba62653150995b Mon Sep 17 00:00:00 2001 From: Gavin Huttley Date: Mon, 26 Aug 2024 08:59:28 +1000 Subject: [PATCH 4/4] REL: bundle the tests with the release too --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4563c06..1885afa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,8 +39,8 @@ Documentation = "https://github.com/HuttleyLab/Divergent" "Bug Tracker" = "https://github.com/HuttleyLab/Divergent/issues" "Source Code" = "https://github.com/HuttleyLab/Divergent/" -[project.sdist] -include = ["src/*", "pyproject.toml"] +[tool.flit.sdist] +include = ["tests/*"] [project.scripts] dvgt = "divergent.cli:main"