mirror of
https://github.com/actions/python-versions.git
synced 2025-12-17 16:26:43 +00:00
Compare commits
8 Commits
test-3.7.1
...
3.11.6-121
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dbb2db2ed5 | ||
|
|
3adfb41a4b | ||
|
|
1c71e7fbce | ||
|
|
75c061081b | ||
|
|
e50bc1c2bf | ||
|
|
4fd1d81fcf | ||
|
|
acd80ba7b4 | ||
|
|
5bbc2cab12 |
44
.github/workflows/test-tk.yml
vendored
Normal file
44
.github/workflows/test-tk.yml
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
name: Test Python Tk
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- tcl-tk
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
tests-poetry:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [macos-13]
|
||||
# python-version: ["3.8.10", "3.8.17", "3.9.1", "3.9.19", "3.9.19", "3.10.1", "3.10.14", "3.11.9"]
|
||||
python-version: [ "3.10.16"]
|
||||
|
||||
fail-fast: false
|
||||
name: ${{ matrix.python-version }} - ${{ matrix.os }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
# uses: actions/setup-python@v5
|
||||
# uses: priya-kinthali/setup-python@test-930
|
||||
uses: priya-kinthali/setup-python@test-tcl
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
# - name: Print Tcl/Tk version
|
||||
# run: |
|
||||
# tclsh <<< 'puts [info patchlevel]; exit'
|
||||
# wish <<< 'puts [info patchlevel]; exit'
|
||||
- name: Verify Python Tk Version
|
||||
run: |
|
||||
python -c "import tkinter; print(f'Tkinter TkVersion: {tkinter.TkVersion}')"
|
||||
- name: Prepare Ubuntu xvfb
|
||||
if: runner.os == 'Linux'
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y libxkbcommon-x11-0 xvfb
|
||||
- name: Run tk script (closes itself after 5 seconds) - Ubuntu
|
||||
if: runner.os == 'Linux'
|
||||
run: xvfb-run python tk_min.py
|
||||
- name: Run tk script (closes itself after 5 seconds)
|
||||
if: runner.os != 'Linux'
|
||||
run: python tk_min.py
|
||||
@@ -80,8 +80,8 @@ class macOSPythonBuilder : NixPythonBuilder {
|
||||
$env:CFLAGS = "-I/usr/local/opt/zlib/include"
|
||||
}
|
||||
|
||||
if ($this.Version -gt "3.7.12") {
|
||||
$configureString += " --with-tcltk-includes='-I /usr/local/opt/tcl-tk/include' --with-tcltk-libs='-L/usr/local/opt/tcl-tk/lib -ltcl8.6 -ltk8.6'"
|
||||
if ($this.Version -lt "3.11.0") {
|
||||
$configureString += " --with-tcltk-includes='-I /usr/local/opt/tcl-tk/include/tcl-tk' --with-tcltk-libs='-L/usr/local/opt/tcl-tk/lib -ltcl8.6 -ltk8.6'"
|
||||
}
|
||||
|
||||
if ($this.Version -eq "3.7.17") {
|
||||
|
||||
7
tk_min.py
Normal file
7
tk_min.py
Normal file
@@ -0,0 +1,7 @@
|
||||
import tkinter as tk
|
||||
|
||||
root = tk.Tk()
|
||||
label = tk.Label(root, text="Hello World!")
|
||||
label.pack(padx=20, pady=20)
|
||||
root.after(5000, root.destroy) # Close the Window after 5 seconds
|
||||
root.mainloop()
|
||||
@@ -185,6 +185,78 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "3.13.1",
|
||||
"stable": true,
|
||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.13.1-12154081405",
|
||||
"files": [
|
||||
{
|
||||
"filename": "python-3.13.1-darwin-arm64.tar.gz",
|
||||
"arch": "arm64",
|
||||
"platform": "darwin",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.1-12154081405/python-3.13.1-darwin-arm64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.13.1-darwin-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "darwin",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.1-12154081405/python-3.13.1-darwin-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.13.1-linux-20.04-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "linux",
|
||||
"platform_version": "20.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.1-12154081405/python-3.13.1-linux-20.04-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.13.1-linux-22.04-arm64.tar.gz",
|
||||
"arch": "arm64",
|
||||
"platform": "linux",
|
||||
"platform_version": "22.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.1-12154081405/python-3.13.1-linux-22.04-arm64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.13.1-linux-22.04-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "linux",
|
||||
"platform_version": "22.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.1-12154081405/python-3.13.1-linux-22.04-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.13.1-linux-24.04-arm64.tar.gz",
|
||||
"arch": "arm64",
|
||||
"platform": "linux",
|
||||
"platform_version": "24.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.1-12154081405/python-3.13.1-linux-24.04-arm64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.13.1-linux-24.04-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "linux",
|
||||
"platform_version": "24.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.1-12154081405/python-3.13.1-linux-24.04-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.13.1-win32-arm64.zip",
|
||||
"arch": "arm64",
|
||||
"platform": "win32",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.1-12154081405/python-3.13.1-win32-arm64.zip"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.13.1-win32-x64.zip",
|
||||
"arch": "x64",
|
||||
"platform": "win32",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.1-12154081405/python-3.13.1-win32-x64.zip"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.13.1-win32-x86.zip",
|
||||
"arch": "x86",
|
||||
"platform": "win32",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.13.1-12154081405/python-3.13.1-win32-x86.zip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "3.13.0",
|
||||
"stable": true,
|
||||
@@ -1004,6 +1076,78 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "3.12.8",
|
||||
"stable": true,
|
||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.12.8-12154062663",
|
||||
"files": [
|
||||
{
|
||||
"filename": "python-3.12.8-darwin-arm64.tar.gz",
|
||||
"arch": "arm64",
|
||||
"platform": "darwin",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.8-12154062663/python-3.12.8-darwin-arm64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.12.8-darwin-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "darwin",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.8-12154062663/python-3.12.8-darwin-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.12.8-linux-20.04-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "linux",
|
||||
"platform_version": "20.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.8-12154062663/python-3.12.8-linux-20.04-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.12.8-linux-22.04-arm64.tar.gz",
|
||||
"arch": "arm64",
|
||||
"platform": "linux",
|
||||
"platform_version": "22.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.8-12154062663/python-3.12.8-linux-22.04-arm64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.12.8-linux-22.04-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "linux",
|
||||
"platform_version": "22.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.8-12154062663/python-3.12.8-linux-22.04-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.12.8-linux-24.04-arm64.tar.gz",
|
||||
"arch": "arm64",
|
||||
"platform": "linux",
|
||||
"platform_version": "24.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.8-12154062663/python-3.12.8-linux-24.04-arm64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.12.8-linux-24.04-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "linux",
|
||||
"platform_version": "24.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.8-12154062663/python-3.12.8-linux-24.04-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.12.8-win32-arm64.zip",
|
||||
"arch": "arm64",
|
||||
"platform": "win32",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.8-12154062663/python-3.12.8-win32-arm64.zip"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.12.8-win32-x64.zip",
|
||||
"arch": "x64",
|
||||
"platform": "win32",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.8-12154062663/python-3.12.8-win32-x64.zip"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.12.8-win32-x86.zip",
|
||||
"arch": "x86",
|
||||
"platform": "win32",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.12.8-12154062663/python-3.12.8-win32-x86.zip"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "3.12.7",
|
||||
"stable": true,
|
||||
@@ -2216,6 +2360,48 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "3.11.11",
|
||||
"stable": true,
|
||||
"release_url": "https://github.com/actions/python-versions/releases/tag/3.11.11-12160100664",
|
||||
"files": [
|
||||
{
|
||||
"filename": "python-3.11.11-linux-20.04-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "linux",
|
||||
"platform_version": "20.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.11.11-12160100664/python-3.11.11-linux-20.04-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.11.11-linux-22.04-arm64.tar.gz",
|
||||
"arch": "arm64",
|
||||
"platform": "linux",
|
||||
"platform_version": "22.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.11.11-12160100664/python-3.11.11-linux-22.04-arm64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.11.11-linux-22.04-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "linux",
|
||||
"platform_version": "22.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.11.11-12160100664/python-3.11.11-linux-22.04-x64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.11.11-linux-24.04-arm64.tar.gz",
|
||||
"arch": "arm64",
|
||||
"platform": "linux",
|
||||
"platform_version": "24.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.11.11-12160100664/python-3.11.11-linux-24.04-arm64.tar.gz"
|
||||
},
|
||||
{
|
||||
"filename": "python-3.11.11-linux-24.04-x64.tar.gz",
|
||||
"arch": "x64",
|
||||
"platform": "linux",
|
||||
"platform_version": "24.04",
|
||||
"download_url": "https://github.com/actions/python-versions/releases/download/3.11.11-12160100664/python-3.11.11-linux-24.04-x64.tar.gz"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "3.11.10",
|
||||
"stable": true,
|
||||
|
||||
Reference in New Issue
Block a user