File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 : 3.20 .0
73+ VERSION : 3.21 .0
7474 PANDOC_RELEASES_URL : https://github.com/jgm/pandoc/releases
7575python_formatting : &python_formatting
7676 parallelism : 1
Original file line number Diff line number Diff line change 11## Changelog
22
3+ ### 3.21.0 (2026-3-26)
4+ * Support for Python 3.14
5+
36### 3.20.0 (2026-2-18)
47* updates to ` save-column-filter ` endpoint to guard against code injection
58
Original file line number Diff line number Diff line change 11{
22 "name" : " dtale" ,
3- "version" : " 3.20 .0" ,
3+ "version" : " 3.21 .0" ,
44 "description" : " Visualizer for Pandas Data Structures" ,
55 "main" : " index.js" ,
66 "repository" : {
Original file line number Diff line number Diff line change 1- FROM node:10.16 .0-alpine as node_build
1+ FROM node:24.4 .0-alpine as node_build
22
33RUN set -eux \
44 ; apk add git
Original file line number Diff line number Diff line change 1- FROM node:10.16 .0-alpine as node_build
1+ FROM node:24.4 .0-alpine as node_build
22
33RUN set -eux \
44 ; apk add git
Original file line number Diff line number Diff line change 1- FROM node:10.16 .0-alpine as node_build
1+ FROM node:24.4 .0-alpine as node_build
22
33RUN set -eux \
44 ; apk add git
Original file line number Diff line number Diff line change 1+ FROM node:24.4.0-alpine as node_build
2+
3+ RUN set -eux \
4+ ; apk add git
5+
6+ COPY . /workspace
7+
8+ WORKDIR /workspace/frontend
9+ RUN set -eux \
10+ ; yarn install --frozen-lockfile \
11+ ; yarn list --depth=0 \
12+ ; yarn run lint \
13+ ; yarn run format \
14+ ; git diff --name-status ./static \
15+ ; git diff-files --quiet ./static || (echo 'The files above have not been formatted!' && (exit 1)) \
16+ ; yarn run test \
17+ ; ls -lah node_modules \
18+ ; yarn run build
19+
20+ FROM continuumio/anaconda:latest as python_build
21+
22+ COPY --from=node_build /workspace /workspace
23+
24+ ENV PATH="/opt/conda/bin/:${PATH}"
25+
26+ WORKDIR /workspace
27+ RUN set -eux \
28+ ; pip install six \
29+ ; pip install lxml \
30+ ; pip install black \
31+ ; pip install -r docs/source/requirements.txt \
32+ ; python setup.py develop \
33+ ; python setup.py build_sphinx \
34+ ; black --check setup.py dtale tests \
35+ ; export TZ=America/New_York \
36+ ; python setup.py test \
37+ ; python setup.py bdist_egg
38+
39+ FROM continuumio/anaconda:latest
40+
41+ COPY --from=python_build /workspace/dist/*.egg /app/
42+
43+ WORKDIR /app
44+
45+ RUN set -eux \
46+ ; . /root/.bashrc \
47+ ; easy_install "dtale-${VERSION}-py3.14.egg"
Original file line number Diff line number Diff line change 1- FROM node:10.16 .0-alpine as node_build
1+ FROM node:24.4 .0-alpine as node_build
22
33RUN set -eux \
44 ; apk add git
Original file line number Diff line number Diff line change 1- FROM node:10.16 .0-alpine as node_build
1+ FROM node:24.4 .0-alpine as node_build
22
33RUN set -eux \
44 ; apk add git
Original file line number Diff line number Diff line change 1- FROM node:10.16 .0-alpine as node_build
1+ FROM node:24.4 .0-alpine as node_build
22
33RUN set -eux \
44 ; apk add git
You can’t perform that action at this time.
0 commit comments