From 740d501c436c13bbf959c514b15d7195a977256c Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 5 Mar 2024 12:40:36 -0500 Subject: [PATCH 1/2] Update publish action to upload also binary dist Fixes #326 Signed-off-by: Simo Sorce --- .github/workflows/publish-to-pypi.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 88b7232..37a341f 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -21,11 +21,13 @@ { "run": "sudo apt-get install cargo" }, { "run": "pip --version" }, { "run": "python setup.py sdist" }, + { "run": "python setup.py bdist_wheel" }, { "uses": "pypa/gh-action-pypi-publish@release/v1", "with": { "user": "__token__", "password": "${{secrets.PYPI_API_TOKEN}}", + "skip-existing": true, }, }, ], From 33f89313f84140bddb67e1628155d71e60cf1c6e Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 5 Mar 2024 12:44:19 -0500 Subject: [PATCH 2/2] Version 1.5.5 Signed-off-by: Simo Sorce --- jwcrypto/VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jwcrypto/VERSION b/jwcrypto/VERSION index 94fe62c..9075be4 100644 --- a/jwcrypto/VERSION +++ b/jwcrypto/VERSION @@ -1 +1 @@ -1.5.4 +1.5.5