Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

Commit

Permalink
migration to python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Mar 23, 2014
1 parent 2005982 commit 5adedf6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
1 change: 0 additions & 1 deletion _unittests/run_unittests.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# coding: latin-1
"""
@file
@brief run all unit tests
Expand Down
24 changes: 18 additions & 6 deletions build_setup_help_on_windows.bat
Original file line number Diff line number Diff line change
@@ -1,19 +1,31 @@
rem we remove everything from dist
echo off
del /Q dist\*.*

rem python 3.3

set pythonexe="c:\python33_x64\python"
%pythonexe% clean_pyd.py
%pythonexe% setup.py build bdist_wininst --plat-name=win-amd64

set pythonexe="c:\python33\python"
%pythonexe% clean_pyd.py
%pythonexe% setup.py sdist --formats=gztar,zip --verbose
%pythonexe% setup.py bdist_wininst

set pythonexe="c:\python33_x64\python"
rem python 3.4

set pythonexe="c:\python34_x64\python"
%pythonexe% clean_pyd.py
%pythonexe% setup.py build bdist_wininst --plat-name=win-amd64

set pythonexe="c:\python33\python"
set pythonexe="c:\python34\python"
%pythonexe% clean_pyd.py
%pythonexe% setup.py sdist --formats=gztar,zip --verbose
%pythonexe% setup.py bdist_wininst

rem help

%pythonexe% make_help.py
if not exist dist\html mkdir dist\html
xcopy /E /C /I /Y _doc\sphinxdoc\build\html dist\html

rem we open a browser with on the generated help
rem dist\html\index.html

2 changes: 1 addition & 1 deletion publish_on_pipy.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

set pythonexe="c:\python33\python"
set pythonexe="c:\python34\python"
%pythonexe% setup.py sdist register upload


0 comments on commit 5adedf6

Please sign in to comment.