We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdecd2b commit 760c491Copy full SHA for 760c491
.github/workflows/run_tests.yml
@@ -25,15 +25,16 @@ jobs:
25
run: |
26
echo "Reason for triggering: ${{ github.event.inputs.reason }}"
27
28
- - name: Set up Python 3.9
+ - name: Set up Python
29
uses: actions/setup-python@v5
30
with:
31
- python-version: 3.9
+ python-version: 3.11
32
33
- name: Install dependencies
34
35
python -m pip install --upgrade pip
36
- pip install -r requirements.txt
+ python -m pip install setuptools>=61.0
37
+ python -m pip install -r requirements.txt
38
39
- name: Lint with flake8
40
run: flake8 . --show-source --statistics
0 commit comments