Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #42 from getsentry/update-versions
Browse files Browse the repository at this point in the history
bump to the latest pythons
  • Loading branch information
asottile-sentry authored Dec 8, 2022
2 parents e01538f + cb0cc5b commit 56b2084
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
8 changes: 4 additions & 4 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ task:
image: ghcr.io/cirruslabs/macos-monterey-base:latest
env:
matrix:
- {PY: 3.8.15, BUILD: '0'}
- {PY: 3.9.15, BUILD: '0'}
- {PY: 3.10.8, BUILD: '0'}
- {PY: 3.11.0, BUILD: '0'}
- {PY: 3.8.16, BUILD: '0'}
- {PY: 3.9.16, BUILD: '0'}
- {PY: 3.10.9, BUILD: '0'}
- {PY: 3.11.1, BUILD: '0'}
name: ${CIRRUS_OS}-${PY}-arm64
build_script: python3 -um build_binary $PY --build $BUILD
validate_script: python3 -um validate
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
strategy:
matrix:
include:
- {os: macos-latest, py: 3.8.15, build: 0}
- {os: macos-latest, py: 3.9.15, build: 0}
- {os: macos-latest, py: 3.10.8, build: 0}
- {os: macos-latest, py: 3.11.0, build: 0}
- {os: ubuntu-latest, py: 3.8.15, build: 0}
- {os: ubuntu-latest, py: 3.9.15, build: 0}
- {os: ubuntu-latest, py: 3.10.8, build: 0}
- {os: ubuntu-latest, py: 3.11.0, build: 0}
- {os: macos-latest, py: 3.8.16, build: 0}
- {os: macos-latest, py: 3.9.16, build: 0}
- {os: macos-latest, py: 3.10.9, build: 0}
- {os: macos-latest, py: 3.11.1, build: 0}
- {os: ubuntu-latest, py: 3.8.16, build: 0}
- {os: ubuntu-latest, py: 3.9.16, build: 0}
- {os: ubuntu-latest, py: 3.10.9, build: 0}
- {os: ubuntu-latest, py: 3.11.1, build: 0}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -32,7 +32,7 @@ jobs:
strategy:
matrix:
os: [darwin, linux]
py: [3.8.15, 3.9.15, 3.10.8, 3.11.0]
py: [3.8.16, 3.9.16, 3.10.9, 3.11.1]
runs-on: ubuntu-latest
permissions:
checks: read
Expand Down
24 changes: 12 additions & 12 deletions build_binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,21 +47,21 @@ class Python(NamedTuple):

# generated via bin/gen-pythons
PYTHONS = {
Version(3, 8, 15): Python(
url='https://www.python.org/ftp/python/3.8.15/Python-3.8.15.tar.xz',
sha256='5114fc7918a2a5e20eb5aac696b30c36f412c6ef24b13f5c9eb9e056982d9550', # noqa: E501
Version(3, 8, 16): Python(
url='https://www.python.org/ftp/python/3.8.16/Python-3.8.16.tar.xz',
sha256='d85dbb3774132473d8081dcb158f34a10ccad7a90b96c7e50ea4bb61f5ce4562', # noqa: E501
),
Version(3, 9, 15): Python(
url='https://www.python.org/ftp/python/3.9.15/Python-3.9.15.tar.xz',
sha256='12daff6809528d9f6154216950423c9e30f0e47336cb57c6aa0b4387dd5eb4b2', # noqa: E501
Version(3, 9, 16): Python(
url='https://www.python.org/ftp/python/3.9.16/Python-3.9.16.tar.xz',
sha256='22dddc099246dd2760665561e8adb7394ea0cc43a72684c6480f9380f7786439', # noqa: E501
),
Version(3, 10, 8): Python(
url='https://www.python.org/ftp/python/3.10.8/Python-3.10.8.tar.xz',
sha256='6a30ecde59c47048013eb5a658c9b5dec277203d2793667f578df7671f7f03f3', # noqa: E501
Version(3, 10, 9): Python(
url='https://www.python.org/ftp/python/3.10.9/Python-3.10.9.tar.xz',
sha256='5ae03e308260164baba39921fdb4dbf8e6d03d8235a939d4582b33f0b5e46a83', # noqa: E501
),
Version(3, 11, 0): Python(
url='https://www.python.org/ftp/python/3.11.0/Python-3.11.0.tar.xz',
sha256='a57dc82d77358617ba65b9841cee1e3b441f386c3789ddc0676eca077f2951c3', # noqa: E501
Version(3, 11, 1): Python(
url='https://www.python.org/ftp/python/3.11.1/Python-3.11.1.tar.xz',
sha256='85879192f2cffd56cb16c092905949ebf3e5e394b7f764723529637901dfb58f', # noqa: E501
),
}
# end generated
Expand Down

0 comments on commit 56b2084

Please sign in to comment.