Programmatically generate SVG (vector) images, animations, and interactive Jupyter widgets

setup: Bump numpy version to equivalent to 2.1

On investigation, it doesn't seem like drawsvg uses anything specific to
1.16+'s APIs, so it's worth a try.

authored by

Maff and committed by cduck.me 59c11292 c69e20a3

+3 -3
+3 -3
setup.py
··· 34 34 extras_require = { 35 35 'raster': [ 36 36 'cairoSVG~=2.3', 37 - 'numpy~=1.16', 37 + 'numpy~=2.1', 38 38 'imageio~=2.5', 39 39 'imageio_ffmpeg~=0.4', 40 40 ], 41 41 'color': [ 42 42 'pwkit~=1.0', 43 - 'numpy~=1.16', 43 + 'numpy~=2.1', 44 44 ], 45 45 'all': [ 46 46 'cairoSVG~=2.3', 47 - 'numpy~=1.16', 47 + 'numpy~=2.1', 48 48 'imageio~=2.5', 49 49 'imageio_ffmpeg~=0.4', 50 50 'pwkit~=1.0',