File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed
Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 11module github.com/MikeMoore63/pybuildInfo
22
3- go 1.22
3+ go 1.23
44
55require golang.org/x/mod v0.22.0
Original file line number Diff line number Diff line change 11# Install the current Go release
22param (
33 [string ]$w = ' c:\go' ,
4- [string ]$v = ' 1.22.7 '
4+ [string ]$v = ' 1.23.2 '
55)
66Set-ExecutionPolicy - ExecutionPolicy Bypass - Scope CurrentUser
77$OutputVariable = (go version) | Out-String
@@ -16,7 +16,7 @@ $env:GOPATH= 'C:\go'
1616$newPath = (' {0}\bin;C:\Program Files\Go\bin;{1}' -f $env: GOPATH , $env: PATH );
1717Write-Host (' Updating PATH: {0}' -f $newPath );
1818[Environment ]::SetEnvironmentVariable(' PATH' , $newPath , [EnvironmentVariableTarget ]::User);
19- $url = ' https://dl.google.com/go/go1.21.1 .windows-amd64.zip' ;
19+ $url = ' https://dl.google.com/go/go1.23.2 .windows-amd64.zip' ;
2020Write-Host (' Downloading {0} ...' -f $url );
2121[Net.ServicePointManager ]::SecurityProtocol = [Net.SecurityProtocolType ]::Tls12;
2222Invoke-WebRequest - Uri $url - OutFile ' go.zip' ;
Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ switch_eol_centos_repos
3030if [ "${AUDITWHEEL_POLICY}" == "manylinux2014" ] && [ "${AUDITWHEEL_ARCH}" == "x86_64" ]
3131then
3232 mkdir -p /usr/local
33- curl https://dl.google.com/go/go1.22.7 .linux-amd64.tar.gz | tar -C /usr/local -xzf -
33+ curl https://dl.google.com/go/go1.23.2 .linux-amd64.tar.gz | tar -C /usr/local -xzf -
3434fi
3535if [ "${AUDITWHEEL_POLICY}" == "manylinux2014" ] && [ "${AUDITWHEEL_ARCH}" == "aarch64" ]
3636then
3737 mkdir -p /usr/local
38- curl https://dl.google.com/go/go1.22.7 .linux-arm64.tar.gz | tar -C /usr/local -xzf -
38+ curl https://dl.google.com/go/go1.23.2 .linux-arm64.tar.gz | tar -C /usr/local -xzf -
3939fi
4040'''
4141environment = """
@@ -44,20 +44,20 @@ PATH=$PATH:/usr/local/go/bin
4444
4545[tool .cibuildwheel .macos ]
4646before-all = '''
47- brew install go@1.22
47+ brew install go@1.23
4848'''
49- environment = " PATH=/usr/local/opt/go@1.22 /bin:/opt/homebrew/opt/go@1.22 /bin:$PATH"
49+ environment = " PATH=/usr/local/opt/go@1.23 /bin:/opt/homebrew/opt/go@1.23 /bin:$PATH"
5050
5151[[tool .cibuildwheel .overrides ]]
5252select = " *-musllinux*"
5353before-all = '''
5454if [ "${AUDITWHEEL_ARCH}" == "x86_64" ]
5555then
56- wget https://golang.org/dl/go1.22.7 .linux-amd64.tar.gz;tar -C /usr/local -xzf go1.22.7 .linux-amd64.tar.gz
56+ wget https://golang.org/dl/go1.23.2 .linux-amd64.tar.gz;tar -C /usr/local -xzf go1.23.2 .linux-amd64.tar.gz
5757fi
5858if [ "${AUDITWHEEL_ARCH}" == "aarch64" ]
5959then
60- wget https://golang.org/dl/go1.22.7 .linux-arm64.tar.gz;tar -C /usr/local -xzf go1.22.7 .linux-arm64.tar.gz
60+ wget https://golang.org/dl/go1.23.2 .linux-arm64.tar.gz;tar -C /usr/local -xzf go1.23.2 .linux-arm64.tar.gz
6161fi
6262'''
6363
Original file line number Diff line number Diff line change 11[metadata]
22name = pygobuildinfo
3- version = 0.1.21
3+ version = 0.1.22
44author = Mike Moore
55author_email = z_z_zebra@yahoo.com
66license = MIT
You can’t perform that action at this time.
0 commit comments