File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed
Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ An http server is provided with the `server.py` file. This file can be run with
55a local HTTP server on port 8000. From there, any desired example can be accessed in the browser by simply navigating
66to it's path. For example to view the ` basic_renderer ` example, you would navigate to ` http://localhost:8000/basic_renderer ` .
77
8- There are some pre-requesites to running this server. It assums that you have [ this branch] ( https://github.com/caffeinepills/pyglet/tree/pygodide )
9- of Pyglet checked out and in a folder named ` pyglet ` directly next to your Arcade repo directory. You will also need to have
8+ There are some pre-requesites to running this server. It assums that you have the ` development ` branch of Pyglet
9+ checked out and in a folder named ` pyglet ` directly next to your Arcade repo directory. You will also need to have
1010the ` build ` and ` flit ` packages from PyPi installed. These are used by Pyglet and Arcade to build wheel files, but are not
1111generally installed for local development.
1212
Original file line number Diff line number Diff line change 1313 const micropip = pyodide . pyimport ( "micropip" ) ;
1414 await pyodide . loadPackage ( "pillow" ) ; // Arcade needs Pillow
1515 await micropip . install ( "http://localhost:8000/pyglet-3.0.0a1-py3-none-any.whl" ) ;
16- await micropip . install ( "http://localhost:8000/arcade-3.2.0 -py3-none-any.whl" ) ;
16+ await micropip . install ( "http://localhost:8000/arcade-3.3.2 -py3-none-any.whl" ) ;
1717
1818 let response = await fetch ( "./package.zip" ) ;
1919 let buffer = await response . arrayBuffer ( ) ;
Original file line number Diff line number Diff line change 1313 const micropip = pyodide . pyimport ( "micropip" ) ;
1414 await pyodide . loadPackage ( "pillow" ) ; // Arcade needs Pillow
1515 await micropip . install ( "http://localhost:8000/pyglet-3.0.0a1-py3-none-any.whl" ) ;
16- await micropip . install ( "http://localhost:8000/arcade-3.2.0 -py3-none-any.whl" ) ;
16+ await micropip . install ( "http://localhost:8000/arcade-3.3.2 -py3-none-any.whl" ) ;
1717
1818 let response = await fetch ( "./package.zip" ) ;
1919 let buffer = await response . arrayBuffer ( ) ;
Original file line number Diff line number Diff line change 1414path_pyglet_wheel = path_pyglet / "dist" / pyglet_wheel_filename
1515
1616path_arcade = Path ("../" )
17- arcade_wheel_filename = "arcade-3.2.0 -py3-none-any.whl"
17+ arcade_wheel_filename = "arcade-3.3.2 -py3-none-any.whl"
1818path_arcade_wheel = path_arcade / "dist" / arcade_wheel_filename
1919
2020
Original file line number Diff line number Diff line change 1313 const micropip = pyodide . pyimport ( "micropip" ) ;
1414 await pyodide . loadPackage ( "pillow" ) ; // Arcade needs Pillow
1515 await micropip . install ( "http://localhost:8000/pyglet-3.0.0a1-py3-none-any.whl" ) ;
16- await micropip . install ( "http://localhost:8000/arcade-3.2.0 -py3-none-any.whl" ) ;
16+ await micropip . install ( "http://localhost:8000/arcade-3.3.2 -py3-none-any.whl" ) ;
1717
1818 let response = await fetch ( "./package.zip" ) ;
1919 let buffer = await response . arrayBuffer ( ) ;
Original file line number Diff line number Diff line change 1313 const micropip = pyodide . pyimport ( "micropip" ) ;
1414 await pyodide . loadPackage ( "pillow" ) ; // Arcade needs Pillow
1515 await micropip . install ( "http://localhost:8000/pyglet-3.0.0a1-py3-none-any.whl" ) ;
16- await micropip . install ( "http://localhost:8000/arcade-3.2.0 -py3-none-any.whl" ) ;
16+ await micropip . install ( "http://localhost:8000/arcade-3.3.2 -py3-none-any.whl" ) ;
1717
1818 let response = await fetch ( "./package.zip" ) ;
1919 let buffer = await response . arrayBuffer ( ) ;
You can’t perform that action at this time.
0 commit comments