From d71836535f0582618ef6783c09e8da7f3f88f685 Mon Sep 17 00:00:00 2001 From: "Ronald I." <14822065+rilma@users.noreply.github.com> Date: Sat, 28 Oct 2023 10:49:27 +0000 Subject: [PATCH] let's see --- .github/workflows/ci.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index aedbc6f..41efa78 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python_version: ["3.8"] + python_version: ["3.10"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python_version }} @@ -27,8 +27,9 @@ jobs: - name: Install dependencies run: | # make install - pip install coveralls numpy - pip install -e . + python -m venv .venv + .venv/bin/pip install coveralls numpy + .venv/bin/pip install -e . # - name: Run code test in Python programs # run: | # make test \ No newline at end of file