From d6807fbe1885de005e4a6d44760b4a26d6a17771 Mon Sep 17 00:00:00 2001 From: gab Date: Sun, 22 Sep 2024 10:38:29 -0400 Subject: [PATCH] Add setuptools --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4ff445..db9333a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,9 +10,9 @@ jobs: python-version: ['3.9', '3.10', '3.11', '3.12'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} architecture: x64 @@ -21,7 +21,7 @@ jobs: - name: Install dependencies run: | sudo apt-get update - sudo apt-get install --yes gcc python3-dev libsqlcipher-dev + sudo apt-get install --yes gcc python3-dev python3-setuptools libsqlcipher-dev pip install -U pip pip install pycodestyle coverage pytest python3 setup.py install