We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74e1299 commit 858bff7Copy full SHA for 858bff7
.github/workflows/test-suite.yml
@@ -16,7 +16,7 @@ jobs:
16
strategy:
17
matrix:
18
#python-version: [3.7, 3.8, 3.9]
19
- python-version: [3.13]
+ python-version: [3.10, 3.11, 3.12]
20
21
steps:
22
- uses: actions/checkout@v2
@@ -29,7 +29,8 @@ jobs:
29
sudo apt-get install libxml2-dev libxslt-dev
30
python -m pip install --upgrade pip
31
pip install .
32
- pip install lxml==5.3.0
+ # Need for python 3.13 lxml 5.3.0
33
+ # pip install lxml==5.3.0
34
pip install flake8 pytest pyOpenSSL==24.2.1 async-timeout==4.0.3
35
if [ -f dev_requirements.txt ]; then pip install -r dev_requirements.txt; fi
36
- name: Lint with flake8
0 commit comments