Skip to content

Commit d08c356

Browse files
committed
meta
1 parent dfa2ce2 commit d08c356

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/python-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
15-
python-version: ['3.10', 3.11, 3.12, 3.13]
15+
python-version: [3.11, 3.12, 3.13]
1616

1717
steps:
1818
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
55

66
## [Unreleased]
77

8+
## Fixed
9+
- setup.py configured to allow numpy 2.0
10+
- contour/contourf overloads compatible with matplotlib 3.10
11+
12+
## changed
13+
- actively supporting python 3.11-3.13
14+
815
## [3.5.3]
916

1017
### Added

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,9 @@ def read(fname):
8181
"Framework :: Matplotlib",
8282
"Natural Language :: English",
8383
"Programming Language :: Python :: 3",
84-
"Programming Language :: Python :: 3.8",
85-
"Programming Language :: Python :: 3.9",
86-
"Programming Language :: Python :: 3.10",
8784
"Programming Language :: Python :: 3.11",
85+
"Programming Language :: Python :: 3.12",
86+
"Programming Language :: Python :: 3.13",
8887
"Topic :: Scientific/Engineering",
8988
],
9089
)

0 commit comments

Comments
 (0)