mirror of
https://github.com/actions/python-versions.git
synced 2025-12-15 15:32:11 +00:00
Compare commits
5 Commits
3.9.21-123
...
3.10.16-12
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1c71e7fbce | ||
|
|
75c061081b | ||
|
|
e50bc1c2bf | ||
|
|
4fd1d81fcf | ||
|
|
acd80ba7b4 |
4
.github/workflows/build-python-packages.yml
vendored
4
.github/workflows/build-python-packages.yml
vendored
@@ -109,10 +109,6 @@ jobs:
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: Adding Symlink
|
||||
if: matrix.os == 'macos-13'
|
||||
run: ln -sf /usr/local/opt/tcl-tk@8 /usr/local/opt/tcl-tk
|
||||
|
||||
- name: Build Python ${{ env.VERSION }}
|
||||
run: |
|
||||
./builders/build-python.ps1 -Version $env:VERSION `
|
||||
|
||||
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-latest-large]
|
||||
# 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,9 +80,9 @@ class macOSPythonBuilder : NixPythonBuilder {
|
||||
$env:CFLAGS = "-I/usr/local/opt/zlib/include"
|
||||
}
|
||||
|
||||
# if ($this.Version -gt "3.7.12") {
|
||||
if ($this.Version -lt "3.10") {
|
||||
$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") {
|
||||
$env:LDFLAGS += " -L$(brew --prefix bzip2)/lib -L$(brew --prefix readline)/lib -L$(brew --prefix ncurses)/lib"
|
||||
|
||||
Reference in New Issue
Block a user