We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 925721a commit 4b7f682Copy full SHA for 4b7f682
Makefile
@@ -7,8 +7,8 @@ data-files: clean
7
cp codeql_kernel/images/* jupyter-data/share/jupyter/kernels/codeql/
8
9
install: data-files
10
- python build_treesitter.py
11
- pip install -e ".[test]"
+ python3 build_treesitter.py
+ pip3 install -e ".[test]"
12
13
clean:
14
rm -rf jupyter-data
@@ -17,8 +17,8 @@ clean:
17
18
19
build: data-files
20
- pip install build twine
21
- python -m build .
+ pip3 install build twine
+ python3 -m build .
22
twine check --strict dist/*
23
24
test: clean
0 commit comments