summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2022-10-29 08:51:21 -0400
committerGitHub <noreply@github.com>2022-10-29 08:51:21 -0400
commit3fdbb783cbcf86e826bc9baf6e42319f59213669 (patch)
tree592dba84ad9ab17866f76aa4760c117579faa1e4 /.github/workflows
parentefebf43eac46401c7ac98a326b67ab356afb4fcf (diff)
downloadastroid-git-3fdbb783cbcf86e826bc9baf6e42319f59213669.tar.gz
Use Python 3.9 for virtualenv-15-windows-test job (#1857)
virtualenv 15.1.0 cannot be installed on Python 3.10+
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/release-tests.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/release-tests.yml b/.github/workflows/release-tests.yml
index 2ea78ff2..32fc1ea8 100644
--- a/.github/workflows/release-tests.yml
+++ b/.github/workflows/release-tests.yml
@@ -21,7 +21,8 @@ jobs:
id: python
uses: actions/setup-python@v4.3.0
with:
- python-version: ${{ env.DEFAULT_PYTHON }}
+ # virtualenv 15.1.0 cannot be installed on Python 3.10+
+ python-version: 3.9
- name: Create Python virtual environment with virtualenv==15.1.0
run: |
python -m pip install virtualenv==15.1.0