Skip to content

Commit f0f14bb

Browse files
committed
updates for v0.3.3
1 parent 87d69eb commit f0f14bb

6 files changed

Lines changed: 15 additions & 12 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![PyPI Version](https://badge.fury.io/py/pynamical.svg)](https://badge.fury.io/py/pynamical)
22
[![Anaconda Downloads](https://anaconda.org/conda-forge/pynamical/badges/downloads.svg)](https://anaconda.org/conda-forge/pynamical)
33
[![Documentation Status](https://readthedocs.org/projects/pynamical/badge/?version=latest)](https://pynamical.readthedocs.io/)
4-
[![Build Status](https://github.com/gboeing/pynamical/workflows/tests/badge.svg?branch=main)](https://github.com/gboeing/pynamical/actions?query=workflow%3A%22tests%22)
4+
[![Build Status](https://github.com/gboeing/pynamical/workflows/tests/badge.svg?branch=main)](https://github.com/gboeing/pynamical/actions/workflows/tests.yml/badge.svg?branch=main)
55
[![Coverage Status](https://codecov.io/gh/gboeing/pynamical/branch/main/graph/badge.svg)](https://codecov.io/gh/gboeing/pynamical)
66

77
# pynamical

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@
6161

6262
# General information about the project.
6363
project = "pynamical"
64-
copyright = "2015-2022, Geoff Boeing"
64+
copyright = "2015-2025, Geoff Boeing"
6565
author = "Geoff Boeing"
6666

6767
# The version info for the project you're documenting, acts as replacement for
6868
# |version| and |release|, also used in various other places throughout the
6969
# built documents.
70-
version = release = "0.3.2"
70+
version = release = "0.3.3"
7171

7272
# The language for content autogenerated by Sphinx. Refer to documentation
7373
# for a list of supported languages.

pynamical/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
from .pynamical import *
44

5-
__version__ = "0.3.2"
5+
__version__ = "0.3.3"

pynamical/pynamical.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ def get_phase_colors(color_request, length=1, color_reverse=False, default_color
585585
else:
586586
# if it's more than 1 character and doesn't start with # then it's
587587
# the name of a colormap
588-
color_map = cm.get_cmap(color_request)
588+
color_map = plt.get_cmap(color_request)
589589
color_list = color_map([x / float(length) for x in range(length)]).tolist()
590590

591591
# make sure list is same length as specified in length argument - if not,
@@ -953,7 +953,7 @@ def phase_diagram_3d(
953953

954954
# create new figure, set its size, and create an axis with 3-D projection
955955
fig = plt.figure(figsize=figsize)
956-
ax = fig.gca(projection="3d")
956+
ax = fig.add_subplot(projection="3d")
957957
ax.xaxis.set_pane_color((1, 1, 1, 1))
958958
ax.yaxis.set_pane_color((1, 1, 1, 1))
959959
ax.zaxis.set_pane_color((1, 1, 1, 1))

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
matplotlib>=3.5
2-
numba>=0.53
3-
numpy>=1.20,<1.22
4-
pandas>=1.3
1+
matplotlib>=3.5,<3.11
2+
numba>=0.53,<0.62
3+
numpy>=1.20,<2.3
4+
pandas>=1.3,<2.3

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
"Programming Language :: Python :: 3.8",
3737
"Programming Language :: Python :: 3.9",
3838
"Programming Language :: Python :: 3.10",
39+
"Programming Language :: Python :: 3.11",
40+
"Programming Language :: Python :: 3.12",
41+
"Programming Language :: Python :: 3.13",
3942
]
4043

4144
# only specify install_requires if not in RTD environment
@@ -47,7 +50,7 @@
4750

4851
setup(
4952
name="pynamical",
50-
version="0.3.2",
53+
version="0.3.3",
5154
description="Model, simulate, and visualize discrete nonlinear dynamical systems",
5255
long_description=LONG_DESCRIPTION,
5356
classifiers=CLASSIFIERS,
@@ -57,6 +60,6 @@
5760
license="MIT",
5861
platforms="any",
5962
packages=["pynamical"],
60-
python_requires=">=3.8",
63+
python_requires=">=3.8,<3.14",
6164
install_requires=INSTALL_REQUIRES,
6265
)

0 commit comments

Comments
 (0)