From c4fb92bd68be9123729bfbb12a35e06ae8ba51bc Mon Sep 17 00:00:00 2001 From: Daniel Goldfarb Date: Tue, 14 Dec 2021 11:37:05 -0500 Subject: [PATCH 1/3] update dev stage alpha->beta; updates to README --- README.md | 13 ++++++++----- setup.py | 3 ++- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7ef8cc38..23751789 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,8 @@ pip install --upgrade mplfinance --- -## **⇾ [Latest Release Information](https://github.com/matplotlib/mplfinance/blob/master/RELEASE_NOTES.md) ⇽** +## **⇾ [Latest Release Information](https://github.com/matplotlib/mplfinance/releases) ⇽** +#### **[Older Release Information](https://github.com/matplotlib/mplfinance/blob/master/RELEASE_NOTES.md)** --- ## Contents and Tutorials @@ -19,14 +20,16 @@ pip install --upgrade mplfinance - **[The New API](https://github.com/matplotlib/mplfinance#newapi)** - **[Tutorials](https://github.com/matplotlib/mplfinance#tutorials)** - **[Basic Usage](https://github.com/matplotlib/mplfinance#usage)** - - **[Customizing the Appearance of Plots](https://github.com/matplotlib/mplfinance/blob/master/markdown/customization_and_styles.md)** (New features: June 2020) + - **[Customizing the Appearance of Plots](https://github.com/matplotlib/mplfinance/blob/master/markdown/customization_and_styles.md)** - **[Adding Your Own Technical Studies to Plots](https://github.com/matplotlib/mplfinance/blob/master/examples/addplot.ipynb)** - - **[Subplots: Multiple Plots on a Single Figure](https://github.com/matplotlib/mplfinance/blob/master/markdown/subplots.md)** (**New features: August 2020**) + - **[Subplots: Multiple Plots on a Single Figure](https://github.com/matplotlib/mplfinance/blob/master/markdown/subplots.md)** - **[Price-Movement Plots (Renko, P&F, etc)](https://github.com/matplotlib/mplfinance/blob/master/examples/price-movement_plots.ipynb)** - **[Trends, Support, Resistance, and Trading Lines](https://github.com/matplotlib/mplfinance/blob/master/examples/using_lines.ipynb)** + - **[Coloring Individual Candlesticks](https://github.com/matplotlib/mplfinance/blob/master/examples/marketcolor_overrides.ipynb)** (New: December 2021) - **[Saving the Plot to a File](https://github.com/matplotlib/mplfinance/blob/master/examples/savefig.ipynb)** - - **[Animation/Updating your plots in realtime](https://github.com/matplotlib/mplfinance/blob/master/markdown/animation.md)** (**New: August 2020**) - - **⇾ [Latest Release Info](https://github.com/matplotlib/mplfinance/blob/master/RELEASE_NOTES.md) ⇽** + - **[Animation/Updating your plots in realtime](https://github.com/matplotlib/mplfinance/blob/master/markdown/animation.md)** + - **⇾ [Latest Release Info](https://github.com/matplotlib/mplfinance/releases) ⇽** + - **[Older Release Info](https://github.com/matplotlib/mplfinance/blob/master/RELEASE_NOTES.md)** - **[Some Background History About This Package](https://github.com/matplotlib/mplfinance#history)** - **[Old API Availability](https://github.com/matplotlib/mplfinance#oldapi)** diff --git a/setup.py b/setup.py index 73d3275e..23cde3b6 100644 --- a/setup.py +++ b/setup.py @@ -27,11 +27,12 @@ license="BSD-style", package_dir={'': pkg_location}, packages=find_packages(where=pkg_location), - classifiers=['Development Status :: 3 - Alpha', + classifiers=['Development Status :: 2 - Beta', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Framework :: Matplotlib', 'Intended Audience :: Developers', 'Intended Audience :: Education', From 40db0dee85924dbedb97c7f56236b089e8fc6d43 Mon Sep 17 00:00:00 2001 From: Daniel Goldfarb Date: Tue, 14 Dec 2021 13:34:32 -0500 Subject: [PATCH 2/3] tweak readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23751789..6ad4510f 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ pip install --upgrade mplfinance --- ## **⇾ [Latest Release Information](https://github.com/matplotlib/mplfinance/releases) ⇽** -#### **[Older Release Information](https://github.com/matplotlib/mplfinance/blob/master/RELEASE_NOTES.md)** +#### ⇾ **[Older Release Information](https://github.com/matplotlib/mplfinance/blob/master/RELEASE_NOTES.md)** --- ## Contents and Tutorials From 268de574695fde2c524da0b49172dcc615ddcaa7 Mon Sep 17 00:00:00 2001 From: Daniel Goldfarb Date: Tue, 14 Dec 2021 13:36:15 -0500 Subject: [PATCH 3/3] set workflow to run only on pull_request and workflow_dispatch --- .github/workflows/mplfinance_checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mplfinance_checks.yml b/.github/workflows/mplfinance_checks.yml index 04a25ce1..d4661e44 100644 --- a/.github/workflows/mplfinance_checks.yml +++ b/.github/workflows/mplfinance_checks.yml @@ -1,5 +1,5 @@ name: mplfinance Checks -on: [ push, pull_request ] +on: [ workflow_dispatch, pull_request ] jobs: Regression_Tests: runs-on: ubuntu-latest