Skip to content

Commit 5a15776

Browse files
committed
install python 3.12
1 parent ed7a5cb commit 5a15776

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

.appveyor.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ skip_branch_with_pr: true
33

44
environment:
55
python_stack: python 3.12
6+
PYTHON_VERSION: 3.12.6
67

78
matrix:
89
# - job_name: Build Python for Linux
@@ -40,11 +41,11 @@ for:
4041
only:
4142
- job_name: Build Python for Windows
4243

43-
install:
44-
- echo install
45-
4644
build_script:
47-
- echo build
45+
- cd windows
46+
- curl -OL https://www.python.org/ftp/python/%PYTHON_VERSION%/python-%PYTHON_VERSION%-amd64.exe
47+
- start /wait python-%PYTHON_VERSION%-amd64.exe /quiet
48+
- dir C:\python312-dist
4849

4950
test: off
5051

windows/unattend.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<Options>
2+
<Option Name="InstallAllUsers" Value="0" />
3+
<Option Name="TargetDir" Value="C:\python312-dist" />
4+
<Option Name="AssociateFiles" Value="0" />
5+
<Option Name="CompileAll" Value="0" />
6+
<Option Name="PrependPath" Value="0" />
7+
<Option Name="Shortcuts" Value="0" />
8+
<Option Name="Include_doc" Value="0" />
9+
<Option Name="Include_debug" Value="1" />
10+
<Option Name="Include_dev" Value="1" />
11+
<Option Name="Include_exe" Value="0" />
12+
<Option Name="Include_launcher" Value="0" />
13+
<Option Name="InstallLauncherAllUsers" Value="0" />
14+
<Option Name="Include_lib" Value="1" />
15+
<Option Name="Include_pip" Value="1" />
16+
<Option Name="Include_symbols" Value="0" />
17+
<Option Name="Include_tcltk" Value="0" />
18+
<Option Name="Include_test" Value="0" />
19+
<Option Name="Include_tools" Value="0" />
20+
<Option Name="LauncherOnly" Value="0" />
21+
<Option Name="SimpleInstall" Value="0" />
22+
<Option Name="SimpleInstallDescription"></Option>
23+
</Options>

0 commit comments

Comments
 (0)