From d19e486e681a7df5bde6efdcc86ae54284dce4a4 Mon Sep 17 00:00:00 2001 From: "Andrew Schonfeld (Boston)" Date: Mon, 17 Apr 2023 14:56:32 -0400 Subject: [PATCH] bumped version numbers to 2.14.1 --- .circleci/config.yml | 2 +- CHANGES.md | 5 +++++ docker/dtale.env | 2 +- docs/source/conf.py | 4 ++-- frontend/package.json | 2 +- requirements.txt | 1 - setup.py | 2 +- 7 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9b76c38d..b14bba0f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -70,7 +70,7 @@ python_variables: &python_variables CIRCLE_ARTIFACTS: /tmp/circleci-artifacts CIRCLE_TEST_REPORTS: /tmp/circleci-test-results CODECOV_TOKEN: b0d35139-0a75-427a-907b-2c78a762f8f0 - VERSION: 2.14.0 + VERSION: 2.14.1 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases python_formatting: &python_formatting parallelism: 1 diff --git a/CHANGES.md b/CHANGES.md index bc028335..8b537ba5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ ## Changelog +### 2.14.1 (2023-4-17) +* update requirements to no longer pin and allow for older versions of packages +* update unit tests to allow for backwards compatibility with older versions of mock library +* update how `Flask.url_for` is detected rather than pinning to specific version of python + ### 2.14.0 (2023-4-10) * [#748](https://github.com/man-group/dtale/issues/748): update auto-generated column deletion code * [#746](https://github.com/man-group/dtale/issues/746): editing cells while filtering diff --git a/docker/dtale.env b/docker/dtale.env index d4800588..606dba1c 100644 --- a/docker/dtale.env +++ b/docker/dtale.env @@ -1,2 +1,2 @@ -VERSION=2.14.0 +VERSION=2.14.1 TZ=America/New_York diff --git a/docs/source/conf.py b/docs/source/conf.py index 5264b423..8233c63e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "2.14.0" +version = "2.14.1" # The full version, including alpha/beta/rc tags. -release = "2.14.0" +release = "2.14.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/frontend/package.json b/frontend/package.json index a55a97c5..8cdb608a 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "dtale", - "version": "2.14.0", + "version": "2.14.1", "description": "Visualizer for Pandas Data Structures", "main": "main.js", "directories": { diff --git a/requirements.txt b/requirements.txt index c258788c..a4b7f551 100644 --- a/requirements.txt +++ b/requirements.txt @@ -26,7 +26,6 @@ itsdangerous<=1.1.0; python_version < '3.7' itsdangerous; python_version >= '3.7' # required for loading scikit-learn joblib<=1.1.1; python_version == '3.6' -# kaleido<=0.1.0; python_version <= '3.6' kaleido kiwisolver<=1.1.0; python_version <= '3.6' MarkupSafe<=1.1.1; python_version == '2.7' diff --git a/setup.py b/setup.py index 89651f06..c96f6e42 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run_tests(self): setup( name="dtale", - version="2.14.0", + version="2.14.1", author="MAN Alpha Technology", author_email="ManAlphaTech@man.com", description="Web Client for Visualizing Pandas Objects",