Skip to content

Commit e9d4c05

Browse files
author
Alexander März
committed
Update Dependencies
1 parent 52a8a81 commit e9d4c05

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

Diff for: .github/workflows/unit-tests.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.9", "3.10", "3.11"]
19+
python-version: ["3.10", "3.11"]
2020

2121
steps:
2222
- uses: actions/checkout@v3
@@ -30,7 +30,6 @@ jobs:
3030
python -m pip install pytest
3131
python -m pip install pytest-coverage
3232
python -m pip install .
33-
python -m pip install git+https://github.com/dsgibbons/shap.git
3433
- name: Test with pytest
3534
run: |
3635
pytest --cov

Diff for: setup.py

+10-9
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,23 @@
1414
include_package_data=True,
1515
package_data={'': ['datasets/*.csv']},
1616
zip_safe=True,
17-
python_requires=">=3.9",
17+
python_requires=">=3.10",
1818
install_requires=[
19-
"lightgbm~=4.1.0",
20-
"torch~=2.1.1",
19+
"lightgbm~=4.2.0",
20+
"torch~=2.1.2",
2121
"pyro-ppl~=1.8.6",
22-
"optuna~=3.4.0",
22+
"optuna~=3.5.0",
2323
"properscoring~=0.1",
24-
"scikit-learn~=1.3.2",
25-
"numpy~=1.26.2",
26-
"pandas~=2.1.3",
24+
"scikit-learn~=1.4.0",
25+
"numpy~=1.26.3",
26+
"pandas~=2.1.4",
2727
"plotnine~=0.12.4",
2828
"scipy~=1.11.4",
29-
"seaborn~=0.13.0",
29+
"shap~=0.44.0",
30+
"seaborn~=0.13.1",
3031
"tqdm~=4.66.1",
3132
"matplotlib~=3.8.2",
32-
"ipython~=8.18.1",
33+
"ipython~=8.20.0",
3334
],
3435
extras_require={
3536
"docs": ["mkdocs", "mkdocstrings[python]", "mkdocs-jupyter"]

0 commit comments

Comments
 (0)