Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
python: [ '3.7.17', '3.8.1', '3.9.23', '3.10.18', '3.11.13' ]

services:
redis:
Expand All @@ -55,12 +55,9 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Install Python ${{ matrix.python }}
run: |
sudo add-apt-repository -y ppa:deadsnakes/ppa
sudo apt-get -qq update
sudo apt-get install -y python${{ matrix.python }} python${{ matrix.python }}-distutils
sudo pip install autopep8
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Run Python tests
run: |
bin/before-install
Expand Down
2 changes: 0 additions & 2 deletions bin/before-install
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ end
case ENV['SUITE']
when 'python'
Dir.chdir('python/') do
run('sudo', 'pip', 'install', '-U', 'pip')
run('sudo', 'pip', 'install', 'setuptools==68.0.0')
run('pip', '--version')
run('sudo', 'make', 'install')
end
Expand Down
Loading