From c2f005fe7d681571906fc2f97cfb2042c8b2d8d38a33dbd1c1d13fdc4ab183b4 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sun, 11 Jun 2023 20:03:15 +0000 Subject: [PATCH 1/3] - updaet to 4.0.3: * Require jupyter_bokeh to enable html output * Fix categorical_order_by check for scatter plot * Fix categorical_order_by check for _construct_source * Refactor category sorting in _construct_source * Add tests for categorical_order_by * Fix scatter plot tests that used line plots * Updated version requirement of pillow to avoid bug * Dropped support for python 3.6 and 3.7 - update to 3.1.0: * Added Boxplot Chart including example in examples notebook OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-chartify?expand=0&rev=22 --- chartify-3.0.5.tar.gz | 3 --- chartify-4.0.3.tar.gz | 3 +++ python-chartify.changes | 19 +++++++++++++++++++ python-chartify.spec | 10 ++++------ 4 files changed, 26 insertions(+), 9 deletions(-) delete mode 100644 chartify-3.0.5.tar.gz create mode 100644 chartify-4.0.3.tar.gz diff --git a/chartify-3.0.5.tar.gz b/chartify-3.0.5.tar.gz deleted file mode 100644 index 5049a89..0000000 --- a/chartify-3.0.5.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3f2ea93f3f7ef77fe0e2f8c13f20746f7a87f59f045ba87b7f2f5127641e3fe0 -size 4784643 diff --git a/chartify-4.0.3.tar.gz b/chartify-4.0.3.tar.gz new file mode 100644 index 0000000..cacc81e --- /dev/null +++ b/chartify-4.0.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aee50211241eac6fc6708423bb3dd85b28b09c3f2251163a510516436b7bd54 +size 4149756 diff --git a/python-chartify.changes b/python-chartify.changes index 6e49447..79efb9b 100644 --- a/python-chartify.changes +++ b/python-chartify.changes @@ -1,3 +1,22 @@ +------------------------------------------------------------------- +Sun Jun 11 19:31:58 UTC 2023 - Dirk Müller + +- updaet to 4.0.3: + * Require jupyter_bokeh to enable html output + * Fix categorical_order_by check for scatter plot + * Fix categorical_order_by check for _construct_source + * Refactor category sorting in _construct_source + * Add tests for categorical_order_by + * Fix scatter plot tests that used line plots + * Updated version requirement of pillow to avoid bug + * Dropped support for python 3.6 and 3.7 + +------------------------------------------------------------------- +Sun Jun 11 19:26:34 UTC 2023 - Dirk Müller + +- update to 3.1.0: + * Added Boxplot Chart including example in examples notebook + ------------------------------------------------------------------- Wed Jan 4 14:16:25 UTC 2023 - Dirk Müller diff --git a/python-chartify.spec b/python-chartify.spec index 506f4f3..9dfb061 100644 --- a/python-chartify.spec +++ b/python-chartify.spec @@ -16,9 +16,9 @@ # -%define skip_python2 1 +%{?sle15_python_module_pythons} Name: python-chartify -Version: 3.0.5 +Version: 4.0.3 Release: 0 Summary: Python library for plotting charts License: Apache-2.0 @@ -31,10 +31,10 @@ BuildArch: noarch # SECTION test requirements BuildRequires: %{python_module Jinja2} BuildRequires: %{python_module Pillow >= 8.4.0} -BuildRequires: %{python_module bokeh >= 2.0.0 with %python-bokeh < 2.5} +BuildRequires: %{python_module bokeh >= 3.0.0} BuildRequires: %{python_module ipykernel >= 5.0} BuildRequires: %{python_module ipython >= 7.0} -BuildRequires: %{python_module pandas >= 1.0.0 with %python-pandas < 2} +BuildRequires: %{python_module pandas} BuildRequires: %{python_module pytest} BuildRequires: %{python_module scipy >= 1.0.0 with %python-scipy < 2} # ignoring https://github.com/SeleniumHQ/selenium/issues/5296 @@ -49,11 +49,9 @@ Chartify is a Python library for creating charts. %prep %setup -q -n chartify-%{version} rm tox.ini -# raise bokeh upper limit, # unpin selenium (see comment above) # unpin Jinja2 (see release notes), but keep a pinning char for the check in setup.py sed -i \ - -e '/bokeh/ s/,<2.3.0/,<2.5/' \ -e '/selenium/ s/,<=3.8.0//' \ -e '/Jinja2/ s/<3.1.0/>1/' \ requirements.txt From 36c10f5aac469cdd35114e23b6ca8b79a7353bd01a32d12d95059f3b4db9926e Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sun, 11 Jun 2023 20:30:10 +0000 Subject: [PATCH 2/3] OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-chartify?expand=0&rev=23 --- python-chartify.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/python-chartify.spec b/python-chartify.spec index 9dfb061..3ab1fb3 100644 --- a/python-chartify.spec +++ b/python-chartify.spec @@ -53,6 +53,7 @@ rm tox.ini # unpin Jinja2 (see release notes), but keep a pinning char for the check in setup.py sed -i \ -e '/selenium/ s/,<=3.8.0//' \ + -e '/pandas/ s/,<2.0.0//' \ -e '/Jinja2/ s/<3.1.0/>1/' \ requirements.txt From 5979a8ca5efa68100d32f7b2959814dbf1e4d7673c10b0352af9f6f9971c52c3 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 12 Jun 2023 15:13:19 +0000 Subject: [PATCH 3/3] - update to 4.0.2: - unpin pandas to allow 2.x OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-chartify?expand=0&rev=24 --- chartify-4.0.2.tar.gz | 3 +++ chartify-4.0.3.tar.gz | 3 --- python-chartify.changes | 4 ++-- python-chartify.spec | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 chartify-4.0.2.tar.gz delete mode 100644 chartify-4.0.3.tar.gz diff --git a/chartify-4.0.2.tar.gz b/chartify-4.0.2.tar.gz new file mode 100644 index 0000000..fe5de7c --- /dev/null +++ b/chartify-4.0.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee151cf613488e7837a361c4c679cbf0cda75ab9a1366f81e3bff4cfb301938 +size 4149725 diff --git a/chartify-4.0.3.tar.gz b/chartify-4.0.3.tar.gz deleted file mode 100644 index cacc81e..0000000 --- a/chartify-4.0.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7aee50211241eac6fc6708423bb3dd85b28b09c3f2251163a510516436b7bd54 -size 4149756 diff --git a/python-chartify.changes b/python-chartify.changes index 79efb9b..17579be 100644 --- a/python-chartify.changes +++ b/python-chartify.changes @@ -1,8 +1,7 @@ ------------------------------------------------------------------- Sun Jun 11 19:31:58 UTC 2023 - Dirk Müller -- updaet to 4.0.3: - * Require jupyter_bokeh to enable html output +- update to 4.0.2: * Fix categorical_order_by check for scatter plot * Fix categorical_order_by check for _construct_source * Refactor category sorting in _construct_source @@ -10,6 +9,7 @@ Sun Jun 11 19:31:58 UTC 2023 - Dirk Müller * Fix scatter plot tests that used line plots * Updated version requirement of pillow to avoid bug * Dropped support for python 3.6 and 3.7 +- unpin pandas to allow 2.x ------------------------------------------------------------------- Sun Jun 11 19:26:34 UTC 2023 - Dirk Müller diff --git a/python-chartify.spec b/python-chartify.spec index 3ab1fb3..6ad1b54 100644 --- a/python-chartify.spec +++ b/python-chartify.spec @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-chartify -Version: 4.0.3 +Version: 4.0.2 Release: 0 Summary: Python library for plotting charts License: Apache-2.0