Skip to content

Commit 3736e5c

Browse files
committed
Added notes about Python 3 support.
1 parent 2f9b031 commit 3736e5c

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

README.rst

+12-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@ Modules
2828
Installation
2929
============
3030

31-
You will need Python 2.7 and setuptools to install the packages. Its best to
32-
install the dependencies first (NumPy, SciPy, matplotlib, Pandas). The SciPy
33-
Stack instructions are helpful for this: http://www.scipy.org/stackspec.html.
31+
You will need Python 2.7 or 3.3+ and setuptools to install the packages. Its
32+
best to install the dependencies first (NumPy, SciPy, matplotlib, Pandas). The
33+
SciPy Stack instructions are helpful for this:
34+
http://www.scipy.org/stackspec.html.
3435

3536
We recommend installing with conda so that dependency installation is not an
3637
issue::
@@ -100,6 +101,14 @@ numpydoc::
100101
Release Notes
101102
=============
102103

104+
0.5.0
105+
-----
106+
107+
- Support for Python 3 [PR `#30`_ and `#31_`.
108+
109+
.. _#30: https://github.com/moorepants/DynamicistToolKit/pull/30
110+
.. _#31: https://github.com/moorepants/DynamicistToolKit/pull/31
111+
103112
0.4.0
104113
-----
105114

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
'Intended Audience :: Science/Research',
2626
'Operating System :: OS Independent',
2727
'Programming Language :: Python :: 2.7',
28+
'Programming Language :: Python :: 3.3',
29+
'Programming Language :: Python :: 3.4',
30+
'Programming Language :: Python :: 3.5',
2831
'Topic :: Scientific/Engineering :: Physics',
2932
],
3033
)

0 commit comments

Comments
 (0)