Skip to content

Commit 996ba41

Browse files
committed
Minor cleanup
1 parent 670c746 commit 996ba41

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

make.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import subprocess
33
import sys
44
from subprocess import check_call as run
5-
from _make_helper import copyfile, get_dirs, rmtree, unlink
5+
from _make_helper import get_dirs, rmtree, unlink
66

77
# Clean DEBUG flag in case it affects build
88
os.environ["PYMANAGER_DEBUG"] = ""
@@ -42,7 +42,6 @@
4242
cwd=DIRS["root"],
4343
env={**os.environ, "BUILD_SOURCEBRANCH": ref})
4444

45-
4645
# Bundle current latest release
4746
run([LAYOUT / "py-manager.exe", "install", "-v", "-f", "--download", TEMP / "bundle", "default"])
4847
(LAYOUT / "bundled").mkdir(parents=True, exist_ok=True)

src/pymanager/appxmanifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
99
xmlns:desktop6="http://schemas.microsoft.com/appx/manifest/desktop/windows10/6"
1010
xmlns:desktop7="http://schemas.microsoft.com/appx/manifest/desktop/windows10/7"
11-
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
1211
xmlns:uap4="http://schemas.microsoft.com/appx/manifest/uap/windows10/4"
1312
xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5"
1413
xmlns:uap13="http://schemas.microsoft.com/appx/manifest/uap/windows10/13"
1514
xmlns:uap17="http://schemas.microsoft.com/appx/manifest/uap/windows10/17">
1615
<Identity Name="PythonSoftwareFoundation.PythonManager"
1716
Version="1.0.0.0"
18-
Publisher="CN=00000000-0000-0000-0000-000000000000" />
17+
Publisher="CN=00000000-0000-0000-0000-000000000000"
18+
ProcessorArchitecture="x64" />
1919
<Properties>
2020
<DisplayName>Python Install Manager</DisplayName>
2121
<PublisherDisplayName>Python Software Foundation</PublisherDisplayName>

0 commit comments

Comments
 (0)