From 44cf572d23e0d505b1e763556eb4a638a9e8a8b1 Mon Sep 17 00:00:00 2001 From: Merlin Unterfinger Date: Wed, 21 Aug 2024 23:57:02 +0200 Subject: [PATCH 1/3] FIX: NAV-152 - Fix poetry publish action --- .github/workflows/poetry-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/poetry-publish.yml b/.github/workflows/poetry-publish.yml index df82eae..9d7acb1 100644 --- a/.github/workflows/poetry-publish.yml +++ b/.github/workflows/poetry-publish.yml @@ -34,4 +34,4 @@ jobs: env: TOKEN: ${{ secrets.PYPI_TOKEN }} run: | - poetry publish --username __token__ --password $TOKEN --no-interaction --build + poetry publish --username __token__ --password $TOKEN --no-interaction From 08c77ce5526e68b949421dbed451029a1bfd3d7a Mon Sep 17 00:00:00 2001 From: Merlin Unterfinger Date: Wed, 21 Aug 2024 23:58:33 +0200 Subject: [PATCH 2/3] DOC: NAV-152 - Version bump to 0.1.1 - Define license. - Set links of homepage, documentation and repository in pyproject.toml. --- pyproject.toml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 62a3301..e3bd653 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,16 @@ [tool.poetry] name = "public-transit-client" -version = "0.1.0" +version = "0.1.1" description = "Client to access the public transit service API endpoints." -authors = ["Lukas Connolly ", "Merlin Unterfinger "] +authors = [ + "Lukas Connolly ", + "Merlin Unterfinger " +] readme = "README.md" +license = "MIT" +homepage = "https://pypi.org/project/public-transit-client/" +documentation = "https://naviqore.github.io/documentation/introduction.html" +repository = "https://github.com/naviqore/public-transit-client" [tool.poetry.dependencies] python = "^3.12" From 0d279737f15af1d050fe87138ceb5f3c0de8483c Mon Sep 17 00:00:00 2001 From: Merlin Unterfinger Date: Wed, 21 Aug 2024 23:59:52 +0200 Subject: [PATCH 3/3] DOC: NAV-152 - Set LICENSE link in README to also work on PYPI --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0676370..4b39904 100644 --- a/README.md +++ b/README.md @@ -63,4 +63,5 @@ poetry run pytest -m integration ## License -This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. +This project is licensed under the MIT License - see +the [LICENSE](https://github.com/naviqore/public-transit-client/blob/main/LICENSE) file for details.