From 5df2ddb7ef9145ea110679408b5df3bcfaa74a9c4e873618fbba537f26f69797 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Fri, 15 Jul 2022 17:51:06 +0000 Subject: [PATCH 1/2] Accepting request 989469 from home:benoit_monin:branches:devel:languages:python - update to version 1.5.0 - require python 3.7 as minimum version to match upstream requirement OBS-URL: https://build.opensuse.org/request/show/989469 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hatchling?expand=0&rev=10 --- hatchling-1.4.1.tar.gz | 3 --- hatchling-1.5.0.tar.gz | 3 +++ python-hatchling.changes | 13 +++++++++++++ python-hatchling.spec | 3 ++- 4 files changed, 18 insertions(+), 4 deletions(-) delete mode 100644 hatchling-1.4.1.tar.gz create mode 100644 hatchling-1.5.0.tar.gz diff --git a/hatchling-1.4.1.tar.gz b/hatchling-1.4.1.tar.gz deleted file mode 100644 index 650b1af..0000000 --- a/hatchling-1.4.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:13461b42876ade4f75ee5d2a2c656b288ca0aab7f048ef66657ef166996b2118 -size 47122 diff --git a/hatchling-1.5.0.tar.gz b/hatchling-1.5.0.tar.gz new file mode 100644 index 0000000..6f1fc98 --- /dev/null +++ b/hatchling-1.5.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca409a41140cc662164680b78adcd3ba77b23a945984bd9970d11fe38e86a38 +size 47149 diff --git a/python-hatchling.changes b/python-hatchling.changes index dce2c4e..8e2046c 100644 --- a/python-hatchling.changes +++ b/python-hatchling.changes @@ -1,3 +1,16 @@ +------------------------------------------------------------------- +Fri Jul 15 12:19:55 UTC 2022 - Benoît Monin + +- update to version 1.5.0: + * Added: + + Support the final draft of PEP 639 + + Add strict-naming option for sdist and wheel targets + * Fixed: Project names are now stored in sdist and wheel target + core metadata exactly as defined in pyproject.toml without + normalization to allow control of how PyPI displays them +- require python 3.7 as minimum version to match upstream + requirement + ------------------------------------------------------------------- Tue Jul 5 18:00:11 UTC 2022 - Benoît Monin diff --git a/python-hatchling.spec b/python-hatchling.spec index 7832759..dd47962 100644 --- a/python-hatchling.spec +++ b/python-hatchling.spec @@ -19,12 +19,13 @@ %define skip_python2 1 %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-hatchling -Version: 1.4.1 +Version: 1.5.0 Release: 0 Summary: Build backend used by Hatch License: MIT URL: https://hatch.pypa.io/latest/ Source0: https://files.pythonhosted.org/packages/source/h/hatchling/hatchling-%{version}.tar.gz +BuildRequires: %{python_module devel >= 3.7} BuildRequires: %{python_module editables >= 0.3} BuildRequires: %{python_module importlib-metadata if %python-base < 3.8} BuildRequires: %{python_module packaging >= 21.3} From d571404d34c7949bd1f852d51841dc2313d0518718f6fe4c84ba3ff8fdf5c87a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=C3=A9ta=20Machov=C3=A1?= Date: Mon, 1 Aug 2022 08:30:40 +0000 Subject: [PATCH 2/2] Accepting request 991827 from home:benoit_monin:branches:devel:languages:python update to version 1.6.0 OBS-URL: https://build.opensuse.org/request/show/991827 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hatchling?expand=0&rev=11 --- hatchling-1.5.0.tar.gz | 3 --- hatchling-1.6.0.tar.gz | 3 +++ python-hatchling.changes | 22 ++++++++++++++++++++++ python-hatchling.spec | 2 +- 4 files changed, 26 insertions(+), 4 deletions(-) delete mode 100644 hatchling-1.5.0.tar.gz create mode 100644 hatchling-1.6.0.tar.gz diff --git a/hatchling-1.5.0.tar.gz b/hatchling-1.5.0.tar.gz deleted file mode 100644 index 6f1fc98..0000000 --- a/hatchling-1.5.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ca409a41140cc662164680b78adcd3ba77b23a945984bd9970d11fe38e86a38 -size 47149 diff --git a/hatchling-1.6.0.tar.gz b/hatchling-1.6.0.tar.gz new file mode 100644 index 0000000..e8d0d2a --- /dev/null +++ b/hatchling-1.6.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6e8505de511ac4217ff50927f6d1845494608e401e63a62b830c31fb613544 +size 47282 diff --git a/python-hatchling.changes b/python-hatchling.changes index 8e2046c..83b812b 100644 --- a/python-hatchling.changes +++ b/python-hatchling.changes @@ -1,3 +1,25 @@ +------------------------------------------------------------------- +Sat Jul 30 20:38:56 UTC 2022 - Benoît Monin + +- update to version 1.6.0: + * Changed: + + When no build targets are specified on the command line, now + default to sdist and wheel targets rather than what happens + to be defined in config + + The code version source now only supports files with known + extensions + + Global build hooks now run before target-specific build hooks + to better match expected behavior + * Added: + + The code version source now supports loading extension + modules + + Add search-paths option for the code version source + * Fixed: + + Fix removing sources using an empty string value in the + mapping + + The strict-naming option now also applies to the metadata + directory of wheel targets + ------------------------------------------------------------------- Fri Jul 15 12:19:55 UTC 2022 - Benoît Monin diff --git a/python-hatchling.spec b/python-hatchling.spec index dd47962..d6f671a 100644 --- a/python-hatchling.spec +++ b/python-hatchling.spec @@ -19,7 +19,7 @@ %define skip_python2 1 %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-hatchling -Version: 1.5.0 +Version: 1.6.0 Release: 0 Summary: Build backend used by Hatch License: MIT