Skip to content

Commit

Permalink
Merge pull request #208 from chrisbra/python3.9
Browse files Browse the repository at this point in the history
Switch to Python3.9
  • Loading branch information
chrisbra authored Jan 11, 2021
2 parents 45b1d00 + 886fd1e commit b412856
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ You can find those interperters here:
* [ActiveTcl](http://www.activestate.com/activetcl/downloads) 8.6.6
* [LuaBinaries](http://luabinaries.sourceforge.net/download.html) 5.3
* [Python](https://www.python.org/downloads/) 2.7
* [Python 3](https://www.python.org/downloads/) 3.8
* [Python 3](https://www.python.org/downloads/) 3.9
* [Racket](https://download.racket-lang.org/) 6.10.1
* [RubyInstaller2](http://rubyinstaller.org/downloads/) 2.4

Expand Down
9 changes: 8 additions & 1 deletion appveyor.bat
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ set PYTHON_32_DIR=C:\python%PYTHON_VER%
set PYTHON_64_DIR=C:\python%PYTHON_VER%-x64
set PYTHON_DIR=!PYTHON_%BIT%_DIR!
:: Python3
set PYTHON3_VER=38
set PYTHON3_VER=39
set PYTHON3_32_URL=https://www.python.org/ftp/python/3.9.0/python-3.9.0.exe
set PYTHON3_64_URL=https://www.python.org/ftp/python/3.9.0/python-3.9.0-amd64.exe
set PYTHON3_URL=!PYTHON3_%BIT%_URL!
set PYTHON3_32_DIR=C:\python%PYTHON3_VER%
set PYTHON3_64_DIR=C:\python%PYTHON3_VER%-x64
set PYTHON3_DIR=!PYTHON3_%BIT%_DIR!
Expand Down Expand Up @@ -121,6 +124,10 @@ start /wait downloads\tcl.exe /extract:c:\ActiveTclTemp /exenoui /exenoupdates /
for /d %%i in (c:\ActiveTclTemp\*) do move %%i %TCL_DIR%
copy %TCL_DIR%\bin\%TCL_DLL% vim\src\

:: Python 3.9
call :downloadfile %PYTHON3_URL% downloads\python3.exe
cmd /c start /wait downloads\python3.exe /quiet TargetDir=%PYTHON3_DIR% Include_pip=0 Include_tcltk=0 Include_test=0 Include_tools=0 AssociateFiles=0 Shortcuts=0 Include_doc=0 Include_launcher=0 InstallLauncherAllUsers=0

:: Ruby
:: RubyInstaller is built by MinGW, so we cannot use header files from it.
:: Download the source files and generate config.h for MSVC.
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ deploy:
* [ActiveTcl](http://www.activestate.com/activetcl/downloads) 8.6.6
* [LuaBinaries](http://luabinaries.sourceforge.net/download.html) 5.3
* [Python](https://www.python.org/downloads/) 2.7
* [Python3](https://www.python.org/downloads/) 3.8
* [Python3](https://www.python.org/downloads/) 3.9
* [Racket](https://download.racket-lang.org/) 6.10.1
* [RubyInstaller2](http://rubyinstaller.org/downloads/) 2.4
Expand Down

0 comments on commit b412856

Please sign in to comment.