Skip to content

Commit

Permalink
Force installer to use python3
Browse files Browse the repository at this point in the history
  • Loading branch information
salcock committed Aug 27, 2021
1 parent 82d2c49 commit 5d29c10
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ dist:
redist: clean dist

install:
CYTHONIZE=1 pip install .
CYTHONIZE=1 pip3 install .

install-from-source: dist
pip install dist/pyavro-stardust-1.0.0.tar.gz
pip3 install dist/pyavro-stardust-1.0.0.tar.gz

clean:
$(RM) -r build dist src/*.egg-info
Expand All @@ -23,5 +23,5 @@ clean:
#git clean -fdX

uninstall:
pip uninstall pyavro-stardust
pip3 uninstall pyavro-stardust

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages, Extension

Expand Down

0 comments on commit 5d29c10

Please sign in to comment.