We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 794368c commit ed89d96Copy full SHA for ed89d96
1 file changed
.github/workflows/release.yml
@@ -112,6 +112,11 @@ jobs:
112
runs-on: ubuntu-latest
113
114
steps:
115
+ - name: Setup Python
116
+ uses: actions/setup-python@v6
117
+ with:
118
+ python-version: "3.12"
119
+
120
- name: Download distributions
121
uses: actions/download-artifact@v7
122
with:
@@ -120,7 +125,7 @@ jobs:
125
merge-multiple: true
126
127
- name: Install validation tooling
123
- run: python -m pip install --upgrade pip twine
128
+ run: python -m pip install --upgrade pip "twine>=6.2,<7" "packaging>=24.2"
124
129
130
- name: Check distribution metadata
131
run: python -m twine check dist/*
0 commit comments