Skip to content

Commit e230f68

Browse files
authored
Bump python to 3.13 (#264)
* bump python to 3.13 * add mock change * bump python version * drop 3.9 from supported versions * bump env file
1 parent 51e2114 commit e230f68

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ultraplot-dev
22
channels:
33
- conda-forge
44
dependencies:
5-
- python>=3.10,<3.13
5+
- python>=3.10,<3.14
66
- numpy
77
- matplotlib>=3.9
88
- cartopy

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ maintainers = [
1818
]
1919
description = "A succinct matplotlib wrapper for making beautiful, publication-quality graphics."
2020
readme = "README.rst"
21-
requires-python = ">=3.10,<3.13"
21+
requires-python = ">=3.10,<3.14"
2222
license = {text = "MIT"}
2323
classifiers = [
2424
"License :: OSI Approved :: MIT License",
2525
"Operating System :: OS Independent",
2626
"Intended Audience :: Science/Research",
2727
"Programming Language :: Python :: 3 :: Only",
28-
"Programming Language :: Python :: 3.9",
2928
"Programming Language :: Python :: 3.10",
3029
"Programming Language :: Python :: 3.11",
3130
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
3232
"Framework :: Matplotlib",
3333
]
3434
dependencies= [

ultraplot/axes/cartesian.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1407,6 +1407,7 @@ def draw(self, renderer=None, *args, **kwargs):
14071407
self._dual_scale("y")
14081408
self._apply_axis_sharing()
14091409
self._update_rotation("x")
1410+
14101411
super().draw(renderer, *args, **kwargs)
14111412

14121413
def get_tightbbox(self, renderer, *args, **kwargs):

0 commit comments

Comments
 (0)