Skip to content

Commit c33125b

Browse files
authored
Remove unnecessary numpy dep, dev3 update (#2826)
1 parent de29b4f commit c33125b

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
You can grab pre-release versions from PyPi. See the available versions from the
44
Arcade [PyPi Release History](https://pypi.org/project/arcade/#history) page.
55

6+
## 4.0.0.dev3
7+
8+
### Fixes
9+
- Removes an unnecessary dependency on NumPy which caused breakage in web browsers.
10+
611
## 4.0.0.dev2
712

813
### Fixes

arcade/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.0.dev2
1+
4.0.0.dev3

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ classifiers = [
2222
dependencies = [
2323
"pillow>=11.3.0",
2424
"pytiled-parser~=2.2.9",
25-
"numpy>=2.2.6",
2625
"pyglet==3.0.dev2",
2726
]
2827
dynamic = ["version"]

webplayground/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
here = Path(__file__).parent.resolve()
2121

2222
path_arcade = Path("../")
23-
arcade_wheel_filename = "arcade-4.0.0.dev1-py3-none-any.whl"
23+
arcade_wheel_filename = "arcade-4.0.0.dev3-py3-none-any.whl"
2424
path_arcade_wheel = path_arcade / "dist" / arcade_wheel_filename
2525

2626
# Directory for local test scripts

0 commit comments

Comments
 (0)