-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated files to support Windows builds.
- Loading branch information
Showing
18 changed files
with
267 additions
and
316 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,20 +1,23 @@ | ||
@echo off | ||
doskey py37=D:\64\Python37\python.exe $* | ||
doskey py38=D:\64\Python38\python.exe $* | ||
doskey py39=D:\64\Python39\python.exe $* | ||
doskey py310=D:\64\Python310\python.exe $* | ||
doskey py311=D:\64\Python311\python.exe $* | ||
|
||
doskey py37_build=D:\64\Python37\python.exe setup.py build_ext -cmingw32 -Imingw64\shared\include -Lmingw64\shared\lib -f bdist_wheel | ||
doskey py38_build=D:\64\Python38\python.exe setup.py build_ext -cmingw32 -Imingw64\shared\include -Lmingw64\shared\lib -f bdist_wheel | ||
doskey py39_build=D:\64\Python39\python.exe setup.py build_ext -cmingw32 -Imingw64\shared\include -Lmingw64\shared\lib -f bdist_wheel | ||
doskey py310_build=D:\64\Python310\python.exe setup.py build_ext -cmingw32 -Imingw64\shared\include -Lmingw64\shared\lib -f bdist_wheel | ||
doskey py311_build=D:\64\Python311\python.exe setup.py build_ext -cmingw32 -Imingw64\shared\include -Lmingw64\shared\lib -f bdist_wheel | ||
|
||
doskey py37_install=cmd /c "for %f in (dist\gmpy2*37*) do D:\64\Python37\python.exe -m pip install %f --force-reinstall" | ||
doskey py38_install=cmd /c "for %f in (dist\gmpy2*38*) do D:\64\Python38\python.exe -m pip install %f --force-reinstall" | ||
doskey py39_install=cmd /c "for %f in (dist\gmpy2*39*) do D:\64\Python39\python.exe -m pip install %f --force-reinstall" | ||
doskey py310_install=cmd /c "for %f in (dist\gmpy2*310*) do D:\64\Python310\python.exe -m pip install %f --force-reinstall" | ||
doskey py311_install=cmd /c "for %f in (dist\gmpy2*311*) do D:\64\Python311\python.exe -m pip install %f --force-reinstall" | ||
|
||
set Path=D:\mingw64\bin;%Path% | ||
@echo off | ||
doskey py37=py -3.7 $* | ||
doskey py38=py -3.8 $* | ||
doskey py39=py -3.9 $* | ||
doskey py310=py -3.10 $* | ||
doskey py311=py -3.11 $* | ||
doskey py312=py -3.12 $* | ||
|
||
doskey py37_build=py -3.7 setup.py build_ext -cmingw32 -Imingw64\shared\include -Lmingw64\shared\lib -f bdist_wheel | ||
doskey py38_build=py -3.8 setup.py build_ext -cmingw32 -Imingw64\shared\include -Lmingw64\shared\lib -f bdist_wheel | ||
doskey py39_build=py -3.9 setup.py build_ext -cmingw32 -Imingw64\shared\include -Lmingw64\shared\lib -f bdist_wheel | ||
doskey py310_build=py -3.10 setup.py build_ext -cmingw32 -Imingw64\shared\include -Lmingw64\shared\lib -f bdist_wheel | ||
doskey py311_build=py -3.11 setup.py build_ext -cmingw32 -Imingw64\shared\include -Lmingw64\shared\lib -f bdist_wheel | ||
doskey py312_build=py -3.12 setup.py build_ext -cmingw32 -Imingw64\shared\include -Lmingw64\shared\lib -f bdist_wheel | ||
|
||
doskey py37_install=cmd /c "for %f in (dist\gmpy2*37*) do py -3.7 -m pip install %f --force-reinstall" | ||
doskey py38_install=cmd /c "for %f in (dist\gmpy2*38*) do py -3.8 -m pip install %f --force-reinstall" | ||
doskey py39_install=cmd /c "for %f in (dist\gmpy2*39*) do py -3.9 -m pip install %f --force-reinstall" | ||
doskey py310_install=cmd /c "for %f in (dist\gmpy2*310*) do py -3.10 -m pip install %f --force-reinstall" | ||
doskey py311_install=cmd /c "for %f in (dist\gmpy2*311*) do py -3.11 -m pip install %f --force-reinstall" | ||
doskey py312_install=cmd /c "for %f in (dist\gmpy2*312*) do py -3.12 -m pip install %f --force-reinstall" | ||
|
||
set Path=C:\mingw64\bin;%Path% |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Oops, something went wrong.