Skip to content

Commit 65d5ad2

Browse files
committed
build: v0.6.1
1 parent fcbedd5 commit 65d5ad2

4 files changed

Lines changed: 18 additions & 8 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ pip install geochemistrypi
7171

7272
Download the latest version to avoid some old version issues, such as dependency downloading.
7373
```
74-
pip install "geochemistrypi==0.6.0"
74+
pip install "geochemistrypi==0.6.1"
7575
```
7676

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

geochemistrypi/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.0"
1+
__version__ = "0.6.1"

geochemistrypi/data_mining/utils/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def install_package(package_name: str) -> None:
140140
"""
141141
import subprocess
142142

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

145145

146146
def clear_output() -> None:

pyproject.toml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,22 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "geochemistrypi"
7-
version = "0.6.0"
7+
version = "0.6.1"
88
authors = [
9-
{ name="Can He", email="sanyhew1097618435@163.com" },
9+
{ name="Can He", email="sanyhew1097618435@163.com"},
10+
{ name="Jianhao Sun", email="sjh20171502@gmail.com"},
11+
{ name="Jianming Zhao", email="zhaojianming@zju.edu.cn"},
12+
{ name="Yang Lyu", email="lyuyang1007@zju.edu.cn"}
1013
]
11-
maintainers = []
12-
description = "A highly automated machine learning Python framework for data-driven geochemistry discovery"
14+
maintainers = [
15+
{ name="Can He", email="sanyhew1097618435@163.com"},
16+
{ name="Jianhao Sun", email="sjh20171502@gmail.com"},
17+
{ name="Jianming Zhao", email="zhaojianming@zju.edu.cn"},
18+
{ name="Yongkang Shan", email="kk1361207571@163.com"},
19+
{ name="Mengqi Gao", email="2534671415@qq.com"}
20+
]
21+
description = "A highly automated machine learning Python framework dedicating to build up MLOps level 1 software product for data-driven geochemistry discovery"
22+
keywords = ["Geochemistry π", "Automated", "Machine Learning", "MLOps", "Geochemistry Discovery", "Continuous Training", "Machine Learning Lifecycle Management", "Model Inference", "Data Mining"]
1323
readme = "README.md"
1424
license = { file="LICENSE" }
1525
requires-python = "~=3.9"

0 commit comments

Comments
 (0)