Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-latest, macos-15-intel, macos-latest]
os: [ubuntu-24.04, windows-latest, macos-15-intel, macos-latest]
pyver: [cp310, cp311, cp312, cp313, cp314, pp38, pp39, pp310, pp311]
exclude:
# excludes
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/MikeMoore63/pybuildInfo

go 1.25
go 1.26

require golang.org/x/mod v0.33.0
4 changes: 2 additions & 2 deletions installGo.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Install the current Go release
param(
[string]$w='c:\go',
[string]$v='1.25.5'
[string]$v='1.26.1'
)
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope CurrentUser
$OutputVariable = (go version) | Out-String
Expand All @@ -16,7 +16,7 @@ $env:GOPATH= 'C:\go'
$newPath = ('{0}\bin;C:\Program Files\Go\bin;{1}' -f $env:GOPATH, $env:PATH);
Write-Host ('Updating PATH: {0}' -f $newPath);
[Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::User);
$url = 'https://dl.google.com/go/go1.25.5.windows-amd64.zip';
$url = 'https://dl.google.com/go/go1.26.1.windows-amd64.zip';
Write-Host ('Downloading {0} ...' -f $url);
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12;
Invoke-WebRequest -Uri $url -OutFile 'go.zip';
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ switch_eol_centos_repos
if [ "${AUDITWHEEL_ARCH}" == "x86_64" ]
then
mkdir -p /usr/local
curl https://dl.google.com/go/go1.25.5.linux-amd64.tar.gz | tar -C /usr/local -xzf -
curl https://dl.google.com/go/go1.26.1.linux-amd64.tar.gz | tar -C /usr/local -xzf -
fi
if [ "${AUDITWHEEL_ARCH}" == "aarch64" ]
then
mkdir -p /usr/local
curl https://dl.google.com/go/go1.25.5.linux-arm64.tar.gz | tar -C /usr/local -xzf -
curl https://dl.google.com/go/go1.26.1.linux-arm64.tar.gz | tar -C /usr/local -xzf -
fi
'''
environment = """
Expand All @@ -44,20 +44,20 @@ PATH=$PATH:/usr/local/go/bin

[tool.cibuildwheel.macos]
before-all = '''
brew install go@1.25
brew install go@1.26
'''
environment = "PATH=/usr/local/opt/go@1.25/bin:/opt/homebrew/opt/go@1.25/bin:$PATH"
environment = "PATH=/usr/local/opt/go@1.26/bin:/opt/homebrew/opt/go@1.26/bin:$PATH"

[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = '''
if [ "${AUDITWHEEL_ARCH}" == "x86_64" ]
then
wget https://golang.org/dl/go1.25.5.linux-amd64.tar.gz;tar -C /usr/local -xzf go1.25.5.linux-amd64.tar.gz
wget https://golang.org/dl/go1.26.1.linux-amd64.tar.gz;tar -C /usr/local -xzf go1.26.1.linux-amd64.tar.gz
fi
if [ "${AUDITWHEEL_ARCH}" == "aarch64" ]
then
wget https://golang.org/dl/go1.25.5.linux-arm64.tar.gz;tar -C /usr/local -xzf go1.25.5.linux-arm64.tar.gz
wget https://golang.org/dl/go1.26.1.linux-arm64.tar.gz;tar -C /usr/local -xzf go1.26.1.linux-arm64.tar.gz
fi
'''

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pygobuildinfo
version = 0.1.27
version = 0.1.28
author = Mike Moore
author_email = z_z_zebra@yahoo.com
license = MIT
Expand Down