forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into debug_check
- Loading branch information
Showing
44 changed files
with
2,220 additions
and
858 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ jobs: | |
# }} | ||
# | ||
run-docs: ${{ steps.docs-changes.outputs.run-docs || false }} | ||
run-win-msi: ${{ steps.win-msi-changes.outputs.run-win-msi || false }} | ||
run_tests: ${{ steps.check.outputs.run_tests || false }} | ||
run_hypothesis: ${{ steps.check.outputs.run_hypothesis || false }} | ||
run_cifuzz: ${{ steps.check.outputs.run_cifuzz || false }} | ||
|
@@ -123,6 +124,20 @@ jobs: | |
id: docs-changes | ||
run: | | ||
echo "run-docs=true" >> "${GITHUB_OUTPUT}" | ||
- name: Get a list of the MSI installer-related files | ||
id: changed-win-msi-files | ||
uses: Ana06/[email protected] | ||
with: | ||
filter: | | ||
Tools/msi/** | ||
.github/workflows/reusable-windows-msi.yml | ||
format: csv # works for paths with spaces | ||
- name: Check for changes in MSI installer-related files | ||
if: >- | ||
steps.changed-win-msi-files.outputs.added_modified_renamed != '' | ||
id: win-msi-changes | ||
run: | | ||
echo "run-win-msi=true" >> "${GITHUB_OUTPUT}" | ||
check-docs: | ||
name: Docs | ||
|
@@ -218,6 +233,21 @@ jobs: | |
arch: ${{ matrix.arch }} | ||
free-threading: ${{ matrix.free-threading }} | ||
|
||
build_windows_msi: | ||
name: >- # ${{ '' } is a hack to nest jobs under the same sidebar category | ||
Windows MSI${{ '' }} | ||
needs: check_source | ||
if: fromJSON(needs.check_source.outputs.run-win-msi) | ||
strategy: | ||
matrix: | ||
arch: | ||
- x86 | ||
- x64 | ||
- arm64 | ||
uses: ./.github/workflows/reusable-windows-msi.yml | ||
with: | ||
arch: ${{ matrix.arch }} | ||
|
||
build_macos: | ||
name: 'macOS' | ||
needs: check_source | ||
|
@@ -571,6 +601,7 @@ jobs: | |
- build_ubuntu_ssltests | ||
- build_wasi | ||
- build_windows | ||
- build_windows_msi | ||
- test_hypothesis | ||
- build_asan | ||
- build_tsan | ||
|
@@ -585,6 +616,7 @@ jobs: | |
with: | ||
allowed-failures: >- | ||
build_ubuntu_ssltests, | ||
build_windows_msi, | ||
cifuzz, | ||
test_hypothesis, | ||
allowed-skips: >- | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: TestsMSI | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
arch: | ||
description: CPU architecture | ||
required: true | ||
type: string | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
name: installer for ${{ inputs.arch }} | ||
runs-on: windows-latest | ||
timeout-minutes: 60 | ||
env: | ||
IncludeFreethreaded: true | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build CPython installer | ||
run: .\Tools\msi\build.bat --doc -${{ inputs.arch }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
Pending Removal in Python 3.13 | ||
------------------------------ | ||
|
||
Modules (see :pep:`594`): | ||
|
||
* :mod:`!aifc` | ||
* :mod:`!audioop` | ||
* :mod:`!cgi` | ||
* :mod:`!cgitb` | ||
* :mod:`!chunk` | ||
* :mod:`!crypt` | ||
* :mod:`!imghdr` | ||
* :mod:`!mailcap` | ||
* :mod:`!msilib` | ||
* :mod:`!nis` | ||
* :mod:`!nntplib` | ||
* :mod:`!ossaudiodev` | ||
* :mod:`!pipes` | ||
* :mod:`!sndhdr` | ||
* :mod:`!spwd` | ||
* :mod:`!sunau` | ||
* :mod:`!telnetlib` | ||
* :mod:`!uu` | ||
* :mod:`!xdrlib` | ||
|
||
Other modules: | ||
|
||
* :mod:`!lib2to3`, and the :program:`2to3` program (:gh:`84540`) | ||
|
||
APIs: | ||
|
||
* :class:`!configparser.LegacyInterpolation` (:gh:`90765`) | ||
* ``locale.resetlocale()`` (:gh:`90817`) | ||
* :meth:`!turtle.RawTurtle.settiltangle` (:gh:`50096`) | ||
* :func:`!unittest.findTestCases` (:gh:`50096`) | ||
* :func:`!unittest.getTestCaseNames` (:gh:`50096`) | ||
* :func:`!unittest.makeSuite` (:gh:`50096`) | ||
* :meth:`!unittest.TestProgram.usageExit` (:gh:`67048`) | ||
* :class:`!webbrowser.MacOSX` (:gh:`86421`) | ||
* :class:`classmethod` descriptor chaining (:gh:`89519`) | ||
* :mod:`importlib.resources` deprecated methods: | ||
|
||
* ``contents()`` | ||
* ``is_resource()`` | ||
* ``open_binary()`` | ||
* ``open_text()`` | ||
* ``path()`` | ||
* ``read_binary()`` | ||
* ``read_text()`` | ||
|
||
Use :func:`importlib.resources.files()` instead. Refer to `importlib-resources: Migrating from Legacy | ||
<https://importlib-resources.readthedocs.io/en/latest/using.html#migrating-from-legacy>`_ (:gh:`106531`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.