Skip to content

Commit

Permalink
Update version info to 3.5.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Banas committed Jan 12, 2022
1 parent e5128ab commit a4db9c2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion chaco
Submodule chaco updated 48 files
+109 −0 .github/workflows/ets-from-source.yml
+2 −14 .github/workflows/test-with-edm.yml
+12 −0 .readthedocs.yaml
+0 −68 .travis.yml
+18 −0 CHANGES.txt
+0 −5 README.rst
+0 −1 appveyor-clean-cache.txt
+0 −26 appveyor-run.cmd
+0 −31 appveyor.yml
+1 −0 chaco/__init__.py
+2 −2 chaco/base_1d_plot.py
+2 −2 chaco/base_2d_plot.py
+10 −3 chaco/base_xy_plot.py
+68 −8 chaco/data_view.py
+2 −2 chaco/examples/demo/basic/hittest_tool.py
+21 −21 chaco/examples/demo/basic/minard_napoleon.py
+2 −0 chaco/linear_mapper.py
+0 −18 chaco/plot_containers.py
+2 −2 chaco/plot_graphics_context.py
+5 −1 chaco/plots/barplot.py
+2 −2 chaco/plots/errorbar_plot.py
+2 −0 chaco/plots/horizon_plot.py
+1 −1 chaco/plots/jitterplot.py
+1 −1 chaco/plots/lineplot.py
+2 −2 chaco/plots/polar_line_renderer.py
+2 −1 chaco/plots/scatterplot.py
+21 −0 chaco/plots/segment_plot.py
+20 −11 chaco/plots/tests/test_image_plot.py
+2 −0 chaco/polar_mapper.py
+2 −2 chaco/tests/test_arraydatasource.py
+40 −1 chaco/tests/test_data_view.py
+37 −11 chaco/tests/test_plot.py
+2 −2 chaco/tools/cursor_tool.py
+1 −1 chaco/tools/data_label_tool.py
+96 −0 chaco/tools/tests/test_cursor_tool.py
+86 −0 chaco/tools/tests/test_data_label_tool.py
+1 −20 ci/edmtool.py
+0 −17 ci/install-edm-linux.sh
+0 −17 ci/install-edm-osx.sh
+48 −48 docs/source/annotated_examples.rst
+6 −0 docs/source/conf.py
+2 −2 docs/source/user_manual/basic_elements/tools.rst
+2 −1 docs/source/user_manual/chaco_tutorial.rst
+2 −2 docs/source/user_manual/tutorial_hyetograph.rst
+2 −2 docs/source/user_manual/tutorial_van_der_waal.rst
+2 −2 examples/demo/advanced/spec_waterfall.py
+0 −26 install-edm-windows.cmd
+6 −3 setup.py
4 changes: 2 additions & 2 deletions conda.recipe/pybert/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "pybert" %}
{% set version = "3.5.3" %}
{% set version = "3.5.4" %}

package:
version: '{{ version }}'
Expand All @@ -13,7 +13,7 @@ source:

build:
# string: a72df0_5
number: 2
number: 1
noarch: "python"
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "
entry_points:
Expand Down
4 changes: 2 additions & 2 deletions pybert/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
Copyright (c) 2014 by David Banas; All rights reserved World wide.
"""
__version__ = "3.5.3"
__date__ = "January 5, 2021"
__version__ = "3.5.4"
__date__ = "January 9, 2021"
__authors__ = "David Banas & David Patterson"
__copy__ = "Copyright (c) 2014 David Banas, 2019 David Patterson"

0 comments on commit a4db9c2

Please sign in to comment.