Skip to content

Commit

Permalink
v3.5.5 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
capn-freako committed Feb 19, 2022
1 parent cac9c23 commit 29da9b1
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion PyAMI
2 changes: 1 addition & 1 deletion chaco
Submodule chaco updated 48 files
+0 −109 .github/workflows/ets-from-source.yml
+14 −2 .github/workflows/test-with-edm.yml
+0 −12 .readthedocs.yaml
+68 −0 .travis.yml
+0 −18 CHANGES.txt
+5 −0 README.rst
+1 −0 appveyor-clean-cache.txt
+26 −0 appveyor-run.cmd
+31 −0 appveyor.yml
+0 −1 chaco/__init__.py
+2 −2 chaco/base_1d_plot.py
+2 −2 chaco/base_2d_plot.py
+3 −10 chaco/base_xy_plot.py
+8 −68 chaco/data_view.py
+2 −2 chaco/examples/demo/basic/hittest_tool.py
+21 −21 chaco/examples/demo/basic/minard_napoleon.py
+0 −2 chaco/linear_mapper.py
+18 −0 chaco/plot_containers.py
+2 −2 chaco/plot_graphics_context.py
+1 −5 chaco/plots/barplot.py
+2 −2 chaco/plots/errorbar_plot.py
+0 −2 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
+1 −2 chaco/plots/scatterplot.py
+0 −21 chaco/plots/segment_plot.py
+11 −20 chaco/plots/tests/test_image_plot.py
+0 −2 chaco/polar_mapper.py
+2 −2 chaco/tests/test_arraydatasource.py
+1 −40 chaco/tests/test_data_view.py
+11 −37 chaco/tests/test_plot.py
+2 −2 chaco/tools/cursor_tool.py
+1 −1 chaco/tools/data_label_tool.py
+0 −96 chaco/tools/tests/test_cursor_tool.py
+0 −86 chaco/tools/tests/test_data_label_tool.py
+20 −1 ci/edmtool.py
+17 −0 ci/install-edm-linux.sh
+17 −0 ci/install-edm-osx.sh
+48 −48 docs/source/annotated_examples.rst
+0 −6 docs/source/conf.py
+2 −2 docs/source/user_manual/basic_elements/tools.rst
+1 −2 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
+26 −0 install-edm-windows.cmd
+3 −6 setup.py
7 changes: 4 additions & 3 deletions conda.recipe/parsec/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "parsec" %}
{% set version = "3.9" %}
{% set version = "3.13" %}

package:
name: '{{ name|lower }}'
Expand All @@ -10,15 +10,16 @@ source:

build:
number: 1
noarch: "python"
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "

requirements:
build:
- python
- python >=3.6,<3.10
- setuptools

run:
- python
- python >=3.6,<3.10

test:
# Python imports
Expand Down
6 changes: 3 additions & 3 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.4" %}
{% set version = "3.5.5" %}

package:
version: '{{ version }}'
Expand All @@ -24,7 +24,7 @@ requirements:
- python =3.8
- kiwisolver
- chaco =5.0.0.1
- pyibis-ami >=3.5.1
- pyibis-ami >=3.5.5
- scikit-rf
- pyside2
- pyyaml
Expand All @@ -34,7 +34,7 @@ requirements:
- setuptools
- kiwisolver
- chaco =5.0.0.1
- pyibis-ami >=3.5.1
- pyibis-ami >=3.5.5
- scikit-rf
- pyside2
- pyyaml
Expand Down
12 changes: 6 additions & 6 deletions conda.recipe/pyibis-ami/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "pyibis-ami" %}
{% set version = "3.5.1" %}
{% set version = "3.5.5" %}

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

build:
# string: 4961a3_2
number: 1
number: 2
# noarch: python
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "

requirements:
run:
- python
- python =3.8
- empy
- scipy
- matplotlib
- parsec =3.9
- parsec =3.13
build:
- python
- python =3.8
- setuptools
- empy
- scipy
- matplotlib
- parsec =3.9
- parsec =3.13

test:
imports:
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.4"
__date__ = "January 9, 2021"
__version__ = "3.5.5"
__date__ = "February 13, 2022"
__authors__ = "David Banas & David Patterson"
__copy__ = "Copyright (c) 2014 David Banas, 2019 David Patterson"

0 comments on commit 29da9b1

Please sign in to comment.