Skip to content

Commit

Permalink
v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BHM-Bob committed Nov 5, 2024
1 parent 65755f1 commit 2833068
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 9 deletions.
3 changes: 2 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
* @Date: 2023-07-29 09:56:37
* @LastEditors: BHM-Bob 2262029386@qq.com
* @LastEditTime: 2024-10-17 17:00:13
* @LastEditTime: 2024-11-05 22:06:33
* @Description:
-->
<!-- mkdocs serve -->
Expand Down Expand Up @@ -112,6 +112,7 @@ Some helpful command line scripts.
16. [video](scripts/video.md)

# Release History
- [0.10.1](release_notes/0.10.1.md)
- [0.10.0](release_notes/0.10.0.md)
- [0.9.4](release_notes/0.9.4.md)
- [0.9.3](release_notes/0.9.3.md)
Expand Down
48 changes: 48 additions & 0 deletions docs/release_notes/0.10.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!--
* @Date: 2024-11-05 21:56:54
* @LastEditors: BHM-Bob 2262029386@qq.com
* @LastEditTime: 2024-11-05 22:06:20
* @Description:
-->
2024-11-05 21:57:11


## Focus on
1. add mbapy_lite as anthor main package for quick access


## What's New
- addon: mbapy\sci_instrument\hplc\_utils.py: add plot_pda_heatmap
- addon: mbapy\scripts\hplc.py: add plot_pda as a new sub command


## Minor Addon
- minor-addon: mbapy\sci_instrument\hplc\_utils.py: plot_pda_heatmap: Add parameters colormap and tick labels `plot_pda_heatmap`, update the documentation to. Also, the function returns the object.
- minor-addon: mbapy\sci_instrument\hplc\_utils.py: plot_pda_heatmap: add return value for ax_topx
- minor-addon: mbapy\scripts\hplc.py: explore_hplc: add pda heatmap fig panel


## BUG-FIX
- fix-bug: mbapy\sci_instrument\hplc\_utils.py: plot_pda_heatmap: df.set_index use hplc_data not data now
- fix-bug: mbapy\sci_instrument\hplc\_utils.py: plot_pda_heatmap: make sure top-x and bottom x axis has same ticks now
- fix-bug: mbapy\scripts\hplc.py: explore_hplc: add title


## CODE-FIX
- fix-code: mbapy\sci_instrument\hplc\waters.py: WatersData: make_tag: add exist check for tag name
- fix-code: mbapy\stats\cluster.py: move KMeans.BackEnd to KMeansBackend
- fix-code: mbapy\stats\cluster.py: KMeans: add suport for data more than 2 dimensions


## Remove
None or a little.


## Other Changes
- build: update setup.py for python version compatibility
Remove support for Python 3.7 due to matplotlib version requirements
Update last edited time to 2024-10-19


## mbapy_lite
- update to mbapy: 466e7264528b891eea57ee0ee1857c2e230e1071
6 changes: 3 additions & 3 deletions mbapy/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
Author: BHM-Bob 2262029386@qq.com
Date: 2022-11-01 22:16:49
LastEditors: BHM-Bob 2262029386@qq.com
LastEditTime: 2024-10-17 16:51:07
LastEditTime: 2024-11-05 21:56:00
Description:
'''

__title__ = "mbapy"
__description__ = "MyBA in Python"
__url__ = "https://github.com/BHM-Bob/BA_PY"
__version__ = "0.10.0"
__build__ = "20241017_1"
__version__ = "0.10.1"
__build__ = "20241105_1"
__author__ = "BHM-Bob G"
__author_email__ = "bhmfly@foxmail.com"
__license__ = "MIT"
6 changes: 3 additions & 3 deletions mbapy_lite/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
Author: BHM-Bob 2262029386@qq.com
Date: 2022-11-01 22:16:49
LastEditors: BHM-Bob 2262029386@qq.com
LastEditTime: 2024-10-17 16:51:24
LastEditTime: 2024-11-05 21:56:22
Description:
'''

__title__ = "mbapy_lite"
__description__ = "MyBA in Python"
__url__ = "https://github.com/BHM-Bob/BA_PY"
__version__ = "0.10.0"
__build__ = "20241017_1"
__version__ = "0.10.1"
__build__ = "20241105_1"
__author__ = "BHM-Bob G"
__author_email__ = "bhmfly@foxmail.com"
__license__ = "MIT"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Author: BHM-Bob 2262029386@qq.com
Date: 2022-11-01 18:30:01
LastEditors: BHM-Bob 2262029386@qq.com
LastEditTime: 2024-10-19 16:37:04
LastEditTime: 2024-11-05 21:56:40
Description:
'''
"""
Expand Down Expand Up @@ -109,4 +109,4 @@
# pip install .

# python setup.py sdist
# twine upload dist/mbapy-0.10.0.tar.gz
# twine upload dist/mbapy-0.10.1.tar.gz

0 comments on commit 2833068

Please sign in to comment.