Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
Chaco CHANGELOG
===============

Release 4.7.0
-------------

Fixes

* Update raise statement to be Python 3 compatible (PR #360)

Release 4.6.1
-------------

Expand Down
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Features

Prerequisites
-------------
Chaco is only supported on Python 2.7.x and Python >= 3.4.
You must have the following libraries installed before building or installing
Chaco:

Expand Down
4 changes: 2 additions & 2 deletions chaco/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ def __init__(self, data=None, **kwtraits):
elif type(data) in (ndarray, tuple, list):
self.data = ArrayPlotData(data)
else:
raise ValueError, "Don't know how to create PlotData for data" \
"of type " + str(type(data))
raise ValueError("Don't know how to create PlotData for data "
"of type {0}".format(type(data)))

if not self._title:
self._title = PlotLabel(font="swiss 16", visible=False,
Expand Down