Skip to content

Commit

Permalink
Updating requirements so it works with google colab
Browse files Browse the repository at this point in the history
  • Loading branch information
elemets committed Nov 13, 2024
1 parent 4cce25e commit c0c1650
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ If you use `model_tuner` in your research or projects, please consider citing it
month = jul,
year = 2024,
publisher = {Zenodo},
version = {0.0.17a},
version = {0.0.18a},
doi = {10.5281/zenodo.12727322},
url = {https://doi.org/10.5281/zenodo.12727322}
}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "model_tuner"
version = "0.0.17a"
version = "0.0.18a"
description = "A Python library for tuning machine learning models."
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
Expand All @@ -28,7 +28,7 @@ dependencies = [
"pip==24.2; python_version >= '3.8' and python_version < '3.11'",
"setuptools==75.1.0; python_version >= '3.8' and python_version < '3.11'",
"wheel==0.44.0; python_version >= '3.8' and python_version < '3.11'",
"numpy>=1.19.5, <1.24; python_version >= '3.8' and python_version < '3.11'",
"numpy>=1.19.5, <1.26; python_version >= '3.8' and python_version < '3.11'",
"pandas>=1.3.5, <2.2.2; python_version >= '3.8' and python_version < '3.11'",
"scikit-learn>=1.0.2, <1.3; python_version >= '3.8' and python_version < '3.11'",
"scipy>=1.6.3, <1.11; python_version >= '3.8' and python_version < '3.11'",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# setuptools==75.1.0
# wheel==0.44.0
# scikit-optimize==0.10.2
# numpy>=1.19.5, <1.24
# numpy>=1.19.5, <1.26
# pandas>=1.3.5, <2.2.2
# scikit-learn>=1.0.2, <1.3
# scipy>=1.6.3, <1.11
Expand Down
2 changes: 1 addition & 1 deletion src/model_tuner/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
cross-validation. This library is particularly useful for model selection,
hyperparameter tuning, and ensuring optimal performance across different metrics.
Version: 0.0.17a
Version: 0.0.18a
"""

Expand Down

0 comments on commit c0c1650

Please sign in to comment.