Skip to content

Commit

Permalink
bumped version numbers to 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aschonfeld committed Jul 19, 2023
1 parent 8b14de1 commit 57f3721
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 3.2.0
VERSION: 3.3.0
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
python_formatting: &python_formatting
parallelism: 1
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Changelog

### 3.3.0 (2023-7-19)
* [#779](https://github.com/man-group/dtale/issues/779): dtale.show(background_mode) not working
* [#778](https://github.com/man-group/dtale/issues/778): Bump matplotlib to >=3.7.0
* dependency upgrades

### 3.2.0 (2023-7-5)
* [#773](https://github.com/man-group/dtale/issues/773): creating a comma-separated string of values from a GroupBy
* [#771](https://github.com/man-group/dtale/issues/771): Support for Python 3.11
Expand Down
47 changes: 47 additions & 0 deletions docker/3_11/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
FROM node:10.16.0-alpine as node_build

RUN set -eux \
; apk add git

COPY . /workspace

WORKDIR /workspace/frontend
RUN set -eux \
; yarn install --frozen-lockfile \
; yarn list --depth=0 \
; yarn run lint \
; yarn run format \
; git diff --name-status ./static \
; git diff-files --quiet ./static || (echo 'The files above have not been formatted!' && (exit 1)) \
; yarn run test \
; ls -lah node_modules \
; yarn run build

FROM continuumio/anaconda:latest as python_build

COPY --from=node_build /workspace /workspace

ENV PATH="/opt/conda/bin/:${PATH}"

WORKDIR /workspace
RUN set -eux \
; pip install six \
; pip install lxml \
; pip install black \
; pip install -r docs/source/requirements.txt \
; python setup.py develop \
; python setup.py build_sphinx \
; black --check setup.py dtale tests \
; export TZ=America/New_York \
; python setup.py test \
; python setup.py bdist_egg

FROM continuumio/anaconda:latest

COPY --from=python_build /workspace/dist/*.egg /app/

WORKDIR /app

RUN set -eux \
; . /root/.bashrc \
; easy_install "dtale-${VERSION}-py3.11.egg"
2 changes: 1 addition & 1 deletion docker/dtale.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION=3.2.0
VERSION=3.3.0
TZ=America/New_York
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
# built documents.
#
# The short X.Y version.
version = "3.2.0"
version = "3.3.0"
# The full version, including alpha/beta/rc tags.
release = "3.2.0"
release = "3.3.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dtale",
"version": "3.2.0",
"version": "3.3.0",
"description": "Visualizer for Pandas Data Structures",
"main": "main.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def run_tests(self):

setup(
name="dtale",
version="3.2.0",
version="3.3.0",
author="MAN Alpha Technology",
author_email="ManAlphaTech@man.com",
description="Web Client for Visualizing Pandas Objects",
Expand Down

0 comments on commit 57f3721

Please sign in to comment.