From d5c0866ec493aa9789fa61d20cf00a0a2fd292f1 Mon Sep 17 00:00:00 2001 From: Marcel Johannesmann Date: Mon, 20 May 2024 11:57:59 +0200 Subject: [PATCH 1/6] fix: bumped pkginfo manually to resolve metadata failure --- dev_requirements/requirements-packaging.in | 2 +- dev_requirements/requirements-packaging.txt | 62 +++++++++++---------- 2 files changed, 34 insertions(+), 30 deletions(-) diff --git a/dev_requirements/requirements-packaging.in b/dev_requirements/requirements-packaging.in index 3aad7fa..9fef062 100644 --- a/dev_requirements/requirements-packaging.in +++ b/dev_requirements/requirements-packaging.in @@ -1,3 +1,3 @@ -# requirements for the hatchling build ssystem +# requirements for the hatchling build system build twine diff --git a/dev_requirements/requirements-packaging.txt b/dev_requirements/requirements-packaging.txt index 73fcc27..d7cd47e 100644 --- a/dev_requirements/requirements-packaging.txt +++ b/dev_requirements/requirements-packaging.txt @@ -1,56 +1,64 @@ # -# This file is autogenerated by pip-compile with python 3.10 -# To update, run: +# This file is autogenerated by pip-compile with Python 3.11 +# by the following command: # -# pip-compile requirements-packaging.in +# pip-compile dev_requirements/requirements-packaging.in # -bleach==6.0.0 - # via readme-renderer +backports-tarfile==1.1.1 + # via jaraco-context build==1.2.1 # via -r dev_requirements/requirements-packaging.in -certifi==2023.7.22 +certifi==2024.2.2 # via requests -cffi==1.15.1 +cffi==1.16.0 # via cryptography -charset-normalizer==3.1.0 +charset-normalizer==3.3.2 # via requests -cryptography==41.0.6 +cryptography==42.0.7 # via secretstorage -docutils==0.20.1 +docutils==0.21.2 # via readme-renderer -idna==3.4 +idna==3.7 # via requests -importlib-metadata==6.7.0 +importlib-metadata==7.1.0 # via # keyring # twine -jaraco-classes==3.2.3 +jaraco-classes==3.4.0 + # via keyring +jaraco-context==5.3.0 + # via keyring +jaraco-functools==4.0.1 # via keyring jeepney==0.8.0 # via # keyring # secretstorage -keyring==23.13.1 +keyring==25.2.1 # via twine markdown-it-py==3.0.0 # via rich mdurl==0.1.2 # via markdown-it-py -more-itertools==9.1.0 - # via jaraco-classes -packaging==23.1 +more-itertools==10.2.0 + # via + # jaraco-classes + # jaraco-functools +nh3==0.2.17 + # via readme-renderer +packaging==24.0 # via build -pkginfo==1.9.6 +pkginfo==1.10.0 # via twine -pycparser==2.21 +pycparser==2.22 # via cffi -pygments==2.15.1 +pygments==2.18.0 # via # readme-renderer # rich -pyproject-hooks==1.0.0 +pyproject-hooks==1.1.0 # via build -readme-renderer==37.3 +readme-renderer==43.0 # via twine requests==2.31.0 # via @@ -60,19 +68,15 @@ requests-toolbelt==1.0.0 # via twine rfc3986==2.0.0 # via twine -rich==13.4.2 +rich==13.7.1 # via twine secretstorage==3.3.3 # via keyring -six==1.16.0 - # via bleach twine==5.1.0 # via -r dev_requirements/requirements-packaging.in -urllib3==2.0.7 +urllib3==2.2.1 # via # requests # twine -webencodings==0.5.1 - # via bleach -zipp==3.15.0 +zipp==3.18.2 # via importlib-metadata From ce578e0222ab7b4f90e96c1889158ffe9e8abdcd Mon Sep 17 00:00:00 2001 From: Marcel Johannesmann Date: Mon, 20 May 2024 12:21:57 +0200 Subject: [PATCH 2/6] fix: run deps with py3.8 --- dev_requirements/requirements-packaging.txt | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/dev_requirements/requirements-packaging.txt b/dev_requirements/requirements-packaging.txt index d7cd47e..7977731 100644 --- a/dev_requirements/requirements-packaging.txt +++ b/dev_requirements/requirements-packaging.txt @@ -1,5 +1,5 @@ # -# This file is autogenerated by pip-compile with Python 3.11 +# This file is autogenerated by pip-compile with Python 3.8 # by the following command: # # pip-compile dev_requirements/requirements-packaging.in @@ -16,14 +16,17 @@ charset-normalizer==3.3.2 # via requests cryptography==42.0.7 # via secretstorage -docutils==0.21.2 +docutils==0.20.1 # via readme-renderer idna==3.7 # via requests importlib-metadata==7.1.0 # via + # build # keyring # twine +importlib-resources==6.4.0 + # via keyring jaraco-classes==3.4.0 # via keyring jaraco-context==5.3.0 @@ -72,11 +75,17 @@ rich==13.7.1 # via twine secretstorage==3.3.3 # via keyring +tomli==2.0.1 + # via build twine==5.1.0 # via -r dev_requirements/requirements-packaging.in +typing-extensions==4.11.0 + # via rich urllib3==2.2.1 # via # requests # twine zipp==3.18.2 - # via importlib-metadata + # via + # importlib-metadata + # importlib-resources \ No newline at end of file From d1ab23952c78c287e098453b95eeb332a2aa0e61 Mon Sep 17 00:00:00 2001 From: Marcel Johannesmann Date: Mon, 20 May 2024 12:28:23 +0200 Subject: [PATCH 3/6] useless new line to push some thing --- .github/workflows/dependabot_automerge.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/dependabot_automerge.yml b/.github/workflows/dependabot_automerge.yml index 68d80b7..cd91cde 100644 --- a/.github/workflows/dependabot_automerge.yml +++ b/.github/workflows/dependabot_automerge.yml @@ -1,6 +1,7 @@ name: Dependabot auto-approve / -merge on: pull_request + jobs: dependabot: permissions: From b1b503b62db84cde1df3f8badf349b4a4021a7b2 Mon Sep 17 00:00:00 2001 From: Marcel Johannesmann Date: Mon, 20 May 2024 12:45:22 +0200 Subject: [PATCH 4/6] fix: action title --- .github/workflows/packaging_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/packaging_test.yml b/.github/workflows/packaging_test.yml index 5e64636..94e5f65 100644 --- a/.github/workflows/packaging_test.yml +++ b/.github/workflows/packaging_test.yml @@ -6,7 +6,7 @@ on: branches: - main jobs: - coverage: + packaging: runs-on: ${{ matrix.os }} strategy: matrix: From 1f7f1c68344f7d9ef02556bac925b01092ec7cb5 Mon Sep 17 00:00:00 2001 From: Marcel Johannesmann Date: Mon, 20 May 2024 15:19:37 +0200 Subject: [PATCH 5/6] rename job --- .github/workflows/packaging_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/packaging_test.yml b/.github/workflows/packaging_test.yml index 5e64636..4466d1b 100644 --- a/.github/workflows/packaging_test.yml +++ b/.github/workflows/packaging_test.yml @@ -6,7 +6,7 @@ on: branches: - main jobs: - coverage: + test_packaging: runs-on: ${{ matrix.os }} strategy: matrix: From bd8394da2cd3526029c5c0b14837c04deedf467d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 16 Jun 2024 17:41:02 +0000 Subject: [PATCH 6/6] build(deps-dev): bump codespell from 2.2.6 to 2.3.0 (#128) Bumps [codespell](https://github.com/codespell-project/codespell) from 2.2.6 to 2.3.0. - [Release notes](https://github.com/codespell-project/codespell/releases) - [Commits](https://github.com/codespell-project/codespell/compare/v2.2.6...v2.3.0) --- updated-dependencies: - dependency-name: codespell dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marcel Johannesmann --- dev_requirements/requirements-spell_check.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_requirements/requirements-spell_check.txt b/dev_requirements/requirements-spell_check.txt index 97d86a4..4940d35 100644 --- a/dev_requirements/requirements-spell_check.txt +++ b/dev_requirements/requirements-spell_check.txt @@ -4,5 +4,5 @@ # # pip-compile requirements-spellcheck.in # -codespell==2.2.6 +codespell==2.3.0 # via -r dev_requirements/requirements-spell_check.in