Skip to content

Commit 1fa433d

Browse files
committed
chore(ci): issue2551368 cleanup new gpg use
Remove the old if statement that selected how gpg was installed now that operation under 3.7 and 3.8 work in testing.
1 parent bb0a55a commit 1fa433d

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/ci-test.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -240,13 +240,9 @@ jobs:
240240
# used for newer Python versions. Temporarily use the
241241
# testing index, which contains a newer version of the
242242
# bindings on 24.04 or released version for other OS
243-
# versions. See issue2551368
244-
if true || grep 24.04 /etc/os-release > /dev/null; then \
245-
pip install --index-url https://test.pypi.org/simple/ \
246-
--extra-index-url https://pypi.org/simple --pre gpg; \
247-
else \
248-
pip install gpg; \
249-
fi
243+
# versions. See issue2551368. 'pip install gpg' should work.
244+
pip install --index-url https://test.pypi.org/simple/ \
245+
--extra-index-url https://pypi.org/simple --pre gpg;
250246
251247
- name: Install aux packages that need versions differences
252248
# if zstd fails install, keep going with test, don't abort

0 commit comments

Comments
 (0)