Skip to content

Commit

Permalink
Merge pull request #358 from ZJUEarthData/web
Browse files Browse the repository at this point in the history
build: v0.6.1
  • Loading branch information
SanyHe committed Jul 5, 2024
2 parents 0623cea + 65d5ad2 commit d6e5e3f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ pip install geochemistrypi

Download the latest version to avoid some old version issues, such as dependency downloading.
```
pip install "geochemistrypi==0.6.0"
pip install "geochemistrypi==0.6.1"
```

One instruction to download on **Jupyter Notebook** or **Google Colab**.
Expand All @@ -81,7 +81,7 @@ One instruction to download on **Jupyter Notebook** or **Google Colab**.
```
Download the latest version to avoid some old version issues, such as dependency downloading.
```
!pip install "geochemistrypi==0.6.0"
!pip install "geochemistrypi==0.6.1"
```
Check the downloaded version of our software:

Expand Down
2 changes: 1 addition & 1 deletion geochemistrypi/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.0"
__version__ = "0.6.1"
2 changes: 1 addition & 1 deletion geochemistrypi/data_mining/utils/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def install_package(package_name: str) -> None:
"""
import subprocess

subprocess.check_call(["python", "-m", "pip", "install", package_name])
subprocess.check_call(["python", "-m", "pip", "install", "--quiet", package_name])


def clear_output() -> None:
Expand Down
18 changes: 14 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,22 @@ build-backend = "hatchling.build"

[project]
name = "geochemistrypi"
version = "0.6.0"
version = "0.6.1"
authors = [
{ name="Can He", email="[email protected]" },
{ name="Can He", email="[email protected]"},
{ name="Jianhao Sun", email="[email protected]"},
{ name="Jianming Zhao", email="[email protected]"},
{ name="Yang Lyu", email="[email protected]"}
]
maintainers = []
description = "A highly automated machine learning Python framework for data-driven geochemistry discovery"
maintainers = [
{ name="Can He", email="[email protected]"},
{ name="Jianhao Sun", email="[email protected]"},
{ name="Jianming Zhao", email="[email protected]"},
{ name="Yongkang Shan", email="[email protected]"},
{ name="Mengqi Gao", email="[email protected]"}
]
description = "A highly automated machine learning Python framework dedicating to build up MLOps level 1 software product for data-driven geochemistry discovery"
keywords = ["Geochemistry π", "Automated", "Machine Learning", "MLOps", "Geochemistry Discovery", "Continuous Training", "Machine Learning Lifecycle Management", "Model Inference", "Data Mining"]
readme = "README.md"
license = { file="LICENSE" }
requires-python = "~=3.9"
Expand Down

0 comments on commit d6e5e3f

Please sign in to comment.