From 09135aabb84aa9dc5338b4a17804ccbf0c8a3b8a Mon Sep 17 00:00:00 2001 From: olszomal Date: Tue, 5 Nov 2024 08:46:55 +0100 Subject: [PATCH] Check Python and cryptography version in Windows CI workflow --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4bdc6a2..b55fc71 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -156,6 +156,9 @@ jobs: python.exe -m ensurepip python.exe -m pip install --upgrade pip python.exe -m pip install cryptography + python.exe -c "import sys; print(sys.executable)" + python.exe --version + python.exe -c "import cryptography; print(f'Python3 cryptography version {cryptography.__version__}')" - name: Find the latest version of Python (Windows) if: runner.os == 'Windows'