Compare commits

...

8 Commits

Author SHA1 Message Date
github-actions[bot] d75b46f658 Update versions-manifest (#385)
CodeQL analysis / CodeQL analysis (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.10.11 windows-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.10.11 macos-15-intel (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.11.8 macos-15-intel (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.12.7 macos-15-intel (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.13.0 macos-15-intel (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.9.13 macos-15-intel (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.10.11 macos-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.11.8 macos-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.12.7 macos-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.13.0 macos-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.9.13 macos-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.10.11 ubuntu-22.04 (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.11.8 ubuntu-22.04 (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.12.7 ubuntu-22.04 (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.13.0 ubuntu-22.04 (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.9.13 ubuntu-22.04 (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.10.11 ubuntu-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.11.8 ubuntu-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.12.7 ubuntu-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.13.0 ubuntu-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.9.13 ubuntu-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.11.8 windows-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.12.7 windows-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.13.0 windows-latest (push) Has been cancelled
Validate 'versions-manifest.json' file / Setup 3.9.13 windows-latest (push) Has been cancelled
Co-authored-by: Service account <no-reply@microsoft.com>
2026-04-07 23:14:56 -05:00
Priya Gupta b4ba860b69 Replace deprecated create-release action with GitHub CLI (#383) 2026-03-23 16:22:29 -05:00
github-actions[bot] d9a6f719c1 Update versions-manifest (#382)
Co-authored-by: Service account <no-reply@microsoft.com>
2026-03-12 22:04:16 -05:00
priya-kinthali 9563bbdac5 Apply upstream cpython patch to fix test_bz2 on 3.15.0a6 (Ubuntu-22.04 arm64) (#381)
* patch for 3.15.0a6

* patch for 3.15.0a6
2026-03-12 11:03:49 -05:00
github-actions[bot] 8cf18c1668 Update versions-manifest (#380)
Co-authored-by: Service account <no-reply@microsoft.com>
2026-03-10 21:56:52 -05:00
Matthieu Darbois 2f93389231 fix: do not include CPython source archive in unix artefacts (#287) 2026-03-10 10:47:45 -05:00
github-actions[bot] 922a545faa Update versions-manifest (#379)
Co-authored-by: Service account <no-reply@microsoft.com>
2026-03-03 21:09:27 -06:00
github-actions[bot] e49da09661 Update versions-manifest (#375)
Co-authored-by: Service account <no-reply@microsoft.com>
2026-02-04 10:31:07 -06:00
3 changed files with 993 additions and 9 deletions
+12 -8
View File
@@ -199,14 +199,18 @@ jobs:
- name: Publish Release ${{ env.VERSION }}
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.VERSION }}-${{ github.run_id }}
release_name: ${{ env.VERSION }}
body: |
Python ${{ env.VERSION }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: |
tag_name="${{ env.VERSION }}-${{ github.run_id }}"
gh release create "$tag_name" \
--repo="$GITHUB_REPOSITORY" \
--title="${{ env.VERSION }}" \
--notes="Python ${{ env.VERSION }}"
release_id=$(gh release view "$tag_name" --repo "$GITHUB_REPOSITORY" --json databaseId --jq '.databaseId')
echo "id=$release_id" >> $GITHUB_OUTPUT
- name: Generate hash for packages
run: |
+9 -1
View File
@@ -73,7 +73,7 @@ class NixPythonBuilder : PythonBuilder {
$sourceUri = $this.GetSourceUri()
Write-Host "Sources URI: $sourceUri"
$archiveFilepath = Download-File -Uri $sourceUri -OutputFolder $this.WorkFolderLocation
$archiveFilepath = Download-File -Uri $sourceUri -OutputFolder $this.TempFolderLocation
$expandedSourceLocation = Join-Path -Path $this.TempFolderLocation -ChildPath "SourceCode"
New-Item -Path $expandedSourceLocation -ItemType Directory
@@ -146,6 +146,14 @@ class NixPythonBuilder : PythonBuilder {
$sourcesLocation = $this.Download()
Push-Location -Path $sourcesLocation
# Patch for 3.15.0a6: Fix test_bz2 BIG_DATA to ensure two compressed blocks
# See: https://github.com/python/cpython/pull/145730
if (($this.Architecture -match "arm64") -and ($this.Platform -match "22\.04") -and ($this.Version -eq [semver]"3.15.0-alpha.6")) {
Write-Host "Applying patch for python/cpython#145730 (test_bz2 fix)..."
Execute-Command -Command "curl -sL -o Lib/test/test_bz2.py https://raw.githubusercontent.com/python/cpython/19676e5fc28bdee8325a062a31ddeee60960cf75/Lib/test/test_bz2.py"
}
Write-Host "Configure for $($this.Platform)..."
$this.Configure()
File diff suppressed because it is too large Load Diff