Updated Python version in .bat files.
This commit is contained in:
parent
36d023b0f2
commit
19b78ed7a9
2
dist.bat
2
dist.bat
|
@ -13,7 +13,7 @@
|
||||||
:: You should have received a copy of the GNU General Public License
|
:: You should have received a copy of the GNU General Public License
|
||||||
:: along with this program. If not, see <http://www.gnu.org/licenses/>.
|
:: along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
@echo off
|
@echo off
|
||||||
set PYDIR=c:\python26
|
set PYDIR=c:\python27
|
||||||
rd build /s /q
|
rd build /s /q
|
||||||
rd dist /s /q
|
rd dist /s /q
|
||||||
%PYDIR%\python.exe setup.py bdist_wininst
|
%PYDIR%\python.exe setup.py bdist_wininst
|
||||||
|
|
2
test.bat
2
test.bat
|
@ -13,6 +13,6 @@
|
||||||
:: You should have received a copy of the GNU General Public License
|
:: You should have received a copy of the GNU General Public License
|
||||||
:: along with this program. If not, see <http://www.gnu.org/licenses/>.
|
:: along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
@echo off
|
@echo off
|
||||||
set PYDIR=C:\Python26
|
set PYDIR=C:\Python27
|
||||||
%PYDIR%\scripts\nosetests -v -m "^test_.*" tests/
|
%PYDIR%\scripts\nosetests -v -m "^test_.*" tests/
|
||||||
@pause
|
@pause
|
||||||
|
|
Loading…
Reference in New Issue