Skip to content

Commit fd2b59b

Browse files
authored
Revert "Use python3 to update bindings (#6068)" (#6071)
This reverts commit 6edf63e. Only show in developer changelog
1 parent be54236 commit fd2b59b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

GDevelop.js/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ These are the bindings of GDevelop core classes to WebAssembly+JavaScript. This
1010

1111
- [CMake 3.17+](http://www.cmake.org/) (3.5+ should work on Linux/macOS). On macOS, you can install it via Homebrew (recommended for Apple M1 Architectures).
1212
- [Node.js](https://nodejs.org/). (We recommend using [nvm](https://github.com/nvm-sh/nvm) to be able to switch between Node versions easily).
13-
- Python3 (via [pyenv](https://github.com/pyenv/pyenv) for versions management).
13+
- Python (via [pyenv](https://github.com/pyenv/pyenv) for versions management).
1414

1515
- Install [Emscripten](https://github.com/kripken/emscripten) version `3.1.21`, as explained below or on the [Emscripten installation instructions](http://kripken.github.io/emscripten-site/docs/getting_started/downloads.html):
1616

GDevelop.js/update-bindings.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function generateGlueFromBinding(cb) {
4040
}
4141

4242
exec(
43-
'python3 "' + webIdlBinderPath + '" Bindings/Bindings.idl Bindings/glue',
43+
'python "' + webIdlBinderPath + '" Bindings/Bindings.idl Bindings/glue',
4444
function(err, stdout, stderr) {
4545
if (err) {
4646
cb({ message: 'Error while running WebIDL binder:', output: err });

0 commit comments

Comments
 (0)