From 56884d959cd56b35d8fef0bd8e2b2bda90a0f6c2 Mon Sep 17 00:00:00 2001 From: Doug Shore Date: Wed, 30 Aug 2023 16:07:23 -0400 Subject: [PATCH 1/2] Upgrade twine --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5888a29..c61eea9 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def get_txt(filename): release_requirements = [ 'bump2version>=1', - 'twine==3.2.0', + 'twine>=4', ] setup_requirements = [] From ff22ff528c00cbad09c6ab5506c84ec135c7b297 Mon Sep 17 00:00:00 2001 From: Doug Shore Date: Wed, 30 Aug 2023 16:09:01 -0400 Subject: [PATCH 2/2] Upgrade twine on action script --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 75d299c..556c179 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -21,7 +21,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install twine==3.2.0 wheel + python -m pip install twine==4.0.2 wheel - name: Build and publish env: TWINE_USERNAME: 'Prebid'