Compare commits

...

2 Commits

Author SHA1 Message Date
psychedelicious
0d78e0e370 chore: bump version to v4.2.7post1 2024-08-05 08:41:27 +10:00
psychedelicious
13875f35f0 build: exclude matplotlib 3.9.1
There was a problem w/ this release on windows and the builds were pulled from pypi. When installing invoke on windows, pip attempts to build from source, but most (all?) systems won't have the prerequisites for this and installs fail.

This also affects GH actions.

The simple fix is to exclude version 3.9.1 from our deps.

For more information, see https://github.com/matplotlib/matplotlib/issues/28551
2024-08-05 08:41:27 +10:00
2 changed files with 3 additions and 2 deletions

View File

@@ -1 +1 @@
__version__ = "4.2.7"
__version__ = "4.2.7post1"

View File

@@ -74,7 +74,8 @@ dependencies = [
"easing-functions",
"einops",
"facexlib",
"matplotlib", # needed for plotting of Penner easing functions
# Exclude 3.9.1 which has a problem on windows, see https://github.com/matplotlib/matplotlib/issues/28551
"matplotlib!=3.9.1",
"npyscreen",
"omegaconf",
"picklescan",