File tree 2 files changed +14
-4
lines changed
2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,21 @@ jobs:
12
12
- uses : actions/checkout@v4
13
13
- uses : actions/setup-python@v5
14
14
with :
15
- python-version : 3.12
15
+ python-version : 3.13
16
16
allow-prereleases : true
17
17
- uses : actions/cache@v4
18
18
with :
19
19
path : ~/.cache/pip
20
20
key : ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
21
+ # https://github.com/scipy/scipy/issues/16308#issuecomment-1140477372
22
+ # https://lxml.de/installation.html#requirements
23
+ - run : |
24
+ sudo apt-get update -qq
25
+ # libgmp-dev for qiskit
26
+ # libhdf5-dev for keras
27
+ # libopenblas-dev for scipy
28
+ # libxml2 for lxml
29
+ sudo apt-get install --yes libgmp-dev libhdf5-dev libopenblas-dev libxml2 libxslt1-dev libxslt1.1 xsltproc
21
30
- name : Install dependencies
22
31
run : |
23
32
python -m pip install --upgrade pip setuptools six wheel
Original file line number Diff line number Diff line change 1
1
beautifulsoup4
2
2
fake_useragent
3
+ git+https://github.com/cclauss/tweepy.git@patch-1 ; python_version >= '3.13'
3
4
imageio
4
- keras ; python_version < '3.12'
5
+ keras
5
6
lxml
6
7
matplotlib
7
8
numpy
17
18
scikit-learn
18
19
statsmodels
19
20
sympy
20
- tensorflow
21
- tweepy
21
+ tensorflow ; python_version < '3.13'
22
+ tweepy ; python_version < '3.13'
22
23
# yulewalker # uncomment once audio_filters/equal_loudness_filter.py is fixed
23
24
typing_extensions
24
25
xgboost
You can’t perform that action at this time.
0 commit comments