Skip to content

Commit 241a9ad

Browse files
committed
bumped version numbers to 2.6.0
1 parent f331d8c commit 241a9ad

File tree

8 files changed

+29
-7
lines changed

8 files changed

+29
-7
lines changed

.circleci/config.yml

+15-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ python_variables: &python_variables
7070
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts
7171
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
7272
CODECOV_TOKEN: b0d35139-0a75-427a-907b-2c78a762f8f0
73-
VERSION: 2.5.1
73+
VERSION: 2.6.0
7474
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
7575
RUN_BLACK: true
7676
python: &python
@@ -126,6 +126,10 @@ python: &python
126126
# possibly switch this script to use "pip install -r requirements.txt"
127127
pip install xlrd
128128
pip install xarray
129+
if [ "${CIRCLE_JOB}" == "build_3_10" ]; then
130+
pip install pybind11
131+
pip install -r requirements.txt
132+
fi
129133
python setup.py develop
130134
- run:
131135
name: Print environment
@@ -280,6 +284,13 @@ jobs:
280284
environment:
281285
<<: *python_variables
282286
<<: *python
287+
build_3_10:
288+
working_directory: ~/man-group/dtale_3_10
289+
docker:
290+
- image: circleci/python:3.10-buster
291+
environment:
292+
<<: *python_variables
293+
<<: *python
283294
workflows:
284295
version: 2
285296
build_all:
@@ -300,3 +311,6 @@ workflows:
300311
- build_3_9:
301312
requires:
302313
- build_JS
314+
- build_3_10:
315+
requires:
316+
- build_JS

CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Changelog
22

3+
### 2.6.0 (2022-6-16)
4+
* added build of python 3.10
5+
* [#671](https://github.com/man-group/dtale/issues/671): updated substring replacement function regex
6+
* [#254](https://github.com/man-group/dtale/issues/254): Fixes for disabling actions
7+
38
### 2.5.1 (2022-5-29)
49
* fixed networkx dependencies
510

docker/dtale.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION=2.5.1
1+
VERSION=2.6.0
22
TZ=America/New_York

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = u"2.5.1"
67+
version = u"2.6.0"
6868
# The full version, including alpha/beta/rc tags.
69-
release = u"2.5.1"
69+
release = u"2.6.0"
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# for a list of supported languages.

frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dtale",
3-
"version": "2.5.1",
3+
"version": "2.6.0",
44
"description": "Visualizer for Pandas Data Structures",
55
"main": "main.js",
66
"directories": {

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ strsimpy
9595
six
9696
xarray==0.11.3; python_version < '3.0'
9797
xarray; python_version >= '3.0'
98-
xlrd
98+
xlrd

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def run_tests(self):
7474

7575
setup(
7676
name="dtale",
77-
version="2.5.1",
77+
version="2.6.0",
7878
author="MAN Alpha Technology",
7979
author_email="[email protected]",
8080
description="Web Client for Visualizing Pandas Objects",
@@ -107,6 +107,7 @@ def run_tests(self):
107107
"Programming Language :: Python :: 3.7",
108108
"Programming Language :: Python :: 3.8",
109109
"Programming Language :: Python :: 3.9",
110+
"Programming Language :: Python :: 3.10",
110111
],
111112
cmdclass={"test": PyTest},
112113
packages=find_packages(exclude=["tests*", "script*"]),

tests/dtale/dash/test_dash.py

+2
Original file line numberDiff line numberDiff line change
@@ -2517,6 +2517,8 @@ def test_chart_building_funnel(treemap_data):
25172517

25182518
@pytest.mark.skipif(not PY3, reason="requires python 3 or higher")
25192519
def test_chart_building_clustergram(clustergram_data):
2520+
pytest.importorskip("dash_bio")
2521+
25202522
import dtale.views as views
25212523

25222524
with app.test_client() as c:

0 commit comments

Comments
 (0)