File tree 8 files changed +29
-7
lines changed
8 files changed +29
-7
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ python_variables: &python_variables
70
70
CIRCLE_ARTIFACTS : /tmp/circleci-artifacts
71
71
CIRCLE_TEST_REPORTS : /tmp/circleci-test-results
72
72
CODECOV_TOKEN : b0d35139-0a75-427a-907b-2c78a762f8f0
73
- VERSION : 2.5.1
73
+ VERSION : 2.6.0
74
74
PANDOC_RELEASES_URL : https://github.com/jgm/pandoc/releases
75
75
RUN_BLACK : true
76
76
python : &python
@@ -126,6 +126,10 @@ python: &python
126
126
# possibly switch this script to use "pip install -r requirements.txt"
127
127
pip install xlrd
128
128
pip install xarray
129
+ if [ "${CIRCLE_JOB}" == "build_3_10" ]; then
130
+ pip install pybind11
131
+ pip install -r requirements.txt
132
+ fi
129
133
python setup.py develop
130
134
- run :
131
135
name : Print environment
@@ -280,6 +284,13 @@ jobs:
280
284
environment :
281
285
<< : *python_variables
282
286
<< : *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
283
294
workflows :
284
295
version : 2
285
296
build_all :
@@ -300,3 +311,6 @@ workflows:
300
311
- build_3_9 :
301
312
requires :
302
313
- build_JS
314
+ - build_3_10 :
315
+ requires :
316
+ - build_JS
Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
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
+
3
8
### 2.5.1 (2022-5-29)
4
9
* fixed networkx dependencies
5
10
Original file line number Diff line number Diff line change 1
- VERSION = 2.5.1
1
+ VERSION = 2.6.0
2
2
TZ = America/New_York
Original file line number Diff line number Diff line change 64
64
# built documents.
65
65
#
66
66
# The short X.Y version.
67
- version = u"2.5.1 "
67
+ version = u"2.6.0 "
68
68
# The full version, including alpha/beta/rc tags.
69
- release = u"2.5.1 "
69
+ release = u"2.6.0 "
70
70
71
71
# The language for content autogenerated by Sphinx. Refer to documentation
72
72
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " dtale" ,
3
- "version" : " 2.5.1 " ,
3
+ "version" : " 2.6.0 " ,
4
4
"description" : " Visualizer for Pandas Data Structures" ,
5
5
"main" : " main.js" ,
6
6
"directories" : {
Original file line number Diff line number Diff line change @@ -95,4 +95,4 @@ strsimpy
95
95
six
96
96
xarray == 0.11.3 ; python_version < '3.0'
97
97
xarray ; python_version >= '3.0'
98
- xlrd
98
+ xlrd
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ def run_tests(self):
74
74
75
75
setup (
76
76
name = "dtale" ,
77
- version = "2.5.1 " ,
77
+ version = "2.6.0 " ,
78
78
author = "MAN Alpha Technology" ,
79
79
80
80
description = "Web Client for Visualizing Pandas Objects" ,
@@ -107,6 +107,7 @@ def run_tests(self):
107
107
"Programming Language :: Python :: 3.7" ,
108
108
"Programming Language :: Python :: 3.8" ,
109
109
"Programming Language :: Python :: 3.9" ,
110
+ "Programming Language :: Python :: 3.10" ,
110
111
],
111
112
cmdclass = {"test" : PyTest },
112
113
packages = find_packages (exclude = ["tests*" , "script*" ]),
Original file line number Diff line number Diff line change @@ -2517,6 +2517,8 @@ def test_chart_building_funnel(treemap_data):
2517
2517
2518
2518
@pytest .mark .skipif (not PY3 , reason = "requires python 3 or higher" )
2519
2519
def test_chart_building_clustergram (clustergram_data ):
2520
+ pytest .importorskip ("dash_bio" )
2521
+
2520
2522
import dtale .views as views
2521
2523
2522
2524
with app .test_client () as c :
You can’t perform that action at this time.
0 commit comments