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 31a40e1 commit 63ee955Copy full SHA for 63ee955
build.sh
@@ -3,17 +3,18 @@
3
# builds our packages for pypi
4
5
source env/bin/activate
6
-pip install -r requirements.txt
+pip2.7 install -r requirements-2.txt
7
+pip3.7 install -r requirements-3.txt
8
9
echo "Removing any previous build dir..."
10
rm -rf build
11
echo "Removing any previous dist dir..."
12
rm -rf dist
13
-echo "Building for python 2.x..."
14
-python setup.py sdist bdist_wheel
15
-echo "Building for python 3.x..."
16
-/usr/local/bin/python3.5 setup.py sdist bdist_wheel
+echo "Building for python 2.7..."
+python2.7 setup.py sdist bdist_wheel
+echo "Building for python 3.7+..."
17
+python3.7 setup.py sdist bdist_wheel
18
19
echo "Running twine upload..."
20
twine upload dist/*
0 commit comments