-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version 0.2.5. Manifest changed to make sure that pyx and pyd files a…
…re in the source distribution, necessary for conda to build correctly
- Loading branch information
Showing
11 changed files
with
45 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
include *.h | ||
recursive-include src *.h | ||
recursive-include src *.h | ||
recursive-include pyreadstat *.h | ||
include *.pyx | ||
recursive-include pyreadstat *.pyx | ||
include *.pxd | ||
recursive-include pyreadstat *.pxd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file renamed
BIN
+1020 KB
...pyreadstat-0.2.4-cp27-cp27m-win_amd64.whl → ...pyreadstat-0.2.5-cp27-cp27m-win_amd64.whl
Binary file not shown.
Binary file renamed
BIN
+1020 KB
...pyreadstat-0.2.4-cp35-cp35m-win_amd64.whl → ...pyreadstat-0.2.5-cp35-cp35m-win_amd64.whl
Binary file not shown.
Binary file renamed
BIN
+1020 KB
...pyreadstat-0.2.4-cp36-cp36m-win_amd64.whl → ...pyreadstat-0.2.5-cp36-cp36m-win_amd64.whl
Binary file not shown.
Binary file renamed
BIN
+1020 KB
...pyreadstat-0.2.4-cp37-cp37m-win_amd64.whl → ...pyreadstat-0.2.5-cp37-cp37m-win_amd64.whl
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
#!/usr/bin/env bash | ||
|
||
# This script is to be run using mingw and generates python wheels. | ||
# It assumes that there are already existing virtual envs for every python version | ||
|
||
# define python command for every version | ||
py37=/c/Users/fajardoo/AppData/Local/conda/conda/envs/py37/python.exe | ||
py36=/c/Users/fajardoo/AppData/Local/conda/conda/envs/py36/python.exe | ||
py35=/c/Users/fajardoo/AppData/Local/conda/conda/envs/py35/python.exe | ||
py27=/c/Users/fajardoo/AppData/Local/conda/conda/envs/py27/python.exe | ||
build="setup.py sdist bdist_wheel" | ||
##### | ||
|
||
cd .. | ||
|
||
# clean deployment folder | ||
rm dist/* | ||
|
||
# build! | ||
echo "Building wheel for python 3.7" | ||
$py37 $build | ||
echo "***************************************" | ||
echo "Building wheel for python 3.6" | ||
$py36 $build | ||
echo "***************************************" | ||
echo "Building wheel for python 3.5" | ||
$py35 $build | ||
echo "***************************************" | ||
echo "Building wheel for python 2.7" | ||
$py27 $build | ||
echo "***************************************" | ||
#!/usr/bin/env bash | ||
|
||
# This script is to be run using mingw and generates python wheels. | ||
# It assumes that there are already existing virtual envs for every python version | ||
|
||
# define python command for every version | ||
py37=/c/Users/fajardoo/AppData/Local/conda/conda/envs/py37/python.exe | ||
py36=/c/Users/fajardoo/AppData/Local/conda/conda/envs/py36/python.exe | ||
py35=/c/Users/fajardoo/AppData/Local/conda/conda/envs/py35/python.exe | ||
py27=/c/Users/fajardoo/AppData/Local/conda/conda/envs/py27/python.exe | ||
build="setup.py sdist bdist_wheel" | ||
##### | ||
|
||
cd .. | ||
|
||
# clean deployment folder | ||
rm dist/* | ||
|
||
# build! | ||
echo "Building wheel for python 3.7" | ||
$py37 $build | ||
echo "***************************************" | ||
echo "Building wheel for python 3.6" | ||
$py36 $build | ||
echo "***************************************" | ||
echo "Building wheel for python 3.5" | ||
$py35 $build | ||
echo "***************************************" | ||
echo "Building wheel for python 2.7" | ||
$py27 $build | ||
echo "***************************************" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters