File tree 4 files changed +5
-6
lines changed
4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ jobs:
12
12
- uses : actions/checkout@v2
13
13
- uses : actions/setup-python@v2
14
14
with :
15
- python-version : " 3.8 "
15
+ python-version : " 3.9 "
16
16
- uses : actions/cache@v2
17
17
with :
18
18
path : ~/.cache/pip
19
19
key : ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
20
20
- name : Install dependencies
21
21
run : |
22
- python -m pip install --upgrade pip setuptools six
22
+ python -m pip install --upgrade pip setuptools six wheel
23
23
python -m pip install pytest-cov -r requirements.txt
24
24
- name : Run tests
25
25
run : pytest --doctest-modules --ignore=project_euler/ --cov-report=term-missing:skip-covered --cov=. .
Original file line number Diff line number Diff line change 356
356
* [ Linear Discriminant Analysis] ( https://github.com/TheAlgorithms/Python/blob/master/machine_learning/linear_discriminant_analysis.py )
357
357
* [ Linear Regression] ( https://github.com/TheAlgorithms/Python/blob/master/machine_learning/linear_regression.py )
358
358
* [ Logistic Regression] ( https://github.com/TheAlgorithms/Python/blob/master/machine_learning/logistic_regression.py )
359
- * Lstm
360
- * [ Lstm Prediction] ( https://github.com/TheAlgorithms/Python/blob/master/machine_learning/lstm/lstm_prediction.py )
361
359
* [ Multilayer Perceptron Classifier] ( https://github.com/TheAlgorithms/Python/blob/master/machine_learning/multilayer_perceptron_classifier.py )
362
360
* [ Polymonial Regression] ( https://github.com/TheAlgorithms/Python/blob/master/machine_learning/polymonial_regression.py )
363
361
* [ Random Forest Classifier] ( https://github.com/TheAlgorithms/Python/blob/master/machine_learning/random_forest_classifier.py )
866
864
* [ Covid Stats Via Xpath] ( https://github.com/TheAlgorithms/Python/blob/master/web_programming/covid_stats_via_xpath.py )
867
865
* [ Crawl Google Results] ( https://github.com/TheAlgorithms/Python/blob/master/web_programming/crawl_google_results.py )
868
866
* [ Crawl Google Scholar Citation] ( https://github.com/TheAlgorithms/Python/blob/master/web_programming/crawl_google_scholar_citation.py )
867
+ * [ Currency Converter] ( https://github.com/TheAlgorithms/Python/blob/master/web_programming/currency_converter.py )
869
868
* [ Current Stock Price] ( https://github.com/TheAlgorithms/Python/blob/master/web_programming/current_stock_price.py )
870
869
* [ Current Weather] ( https://github.com/TheAlgorithms/Python/blob/master/web_programming/current_weather.py )
871
870
* [ Daily Horoscope] ( https://github.com/TheAlgorithms/Python/blob/master/web_programming/daily_horoscope.py )
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
beautifulsoup4
2
2
fake_useragent
3
- keras
3
+ keras ; python_version < '3.9'
4
4
lxml
5
5
matplotlib
6
6
numpy
@@ -13,5 +13,5 @@ scikit-fuzzy
13
13
sklearn
14
14
statsmodels
15
15
sympy
16
- tensorflow
16
+ tensorflow ; python_version < '3.9'
17
17
xgboost
You can’t perform that action at this time.
0 commit comments