From e0bdde2eb2b8b2b0388f07f58f2964eb29d22817 Mon Sep 17 00:00:00 2001 From: Dimitri Rusin Date: Wed, 3 Jan 2024 17:36:08 +0100 Subject: [PATCH] Upgraded pip and setuptools. --- .github/workflows/windows.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index dfadadb74..b5e6528dd 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -58,10 +58,12 @@ jobs: with: python-version: ${{matrix.python-version}} architecture: ${{matrix.architecture}} - - name: Install library + + - name: Install dependencies run: | - python -m pip install --upgrade pip + python -m pip install --upgrade pip setuptools pip install mypy xmltodict wheel pip install -e . -v + - name: Run unit tests run: python -m unittest -v