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 #43 from getsentry/latest-pythons
Browse files Browse the repository at this point in the history
upgrade to the latest pythons
  • Loading branch information
asottile-sentry authored Jun 7, 2023
2 parents 56b2084 + 09b113a commit d9be11b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 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.16, BUILD: '0'}
- {PY: 3.9.16, BUILD: '0'}
- {PY: 3.10.9, BUILD: '0'}
- {PY: 3.11.1, BUILD: '0'}
- {PY: 3.8.17, BUILD: '0'}
- {PY: 3.9.17, BUILD: '0'}
- {PY: 3.10.11, BUILD: '0'}
- {PY: 3.11.3, 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.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}
- {os: macos-latest, py: 3.8.17, build: 0}
- {os: macos-latest, py: 3.9.17, build: 0}
- {os: macos-latest, py: 3.10.11, build: 0}
- {os: macos-latest, py: 3.11.3, build: 0}
- {os: ubuntu-latest, py: 3.8.17, build: 0}
- {os: ubuntu-latest, py: 3.9.17, build: 0}
- {os: ubuntu-latest, py: 3.10.11, build: 0}
- {os: ubuntu-latest, py: 3.11.3, 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.16, 3.9.16, 3.10.9, 3.11.1]
py: [3.8.17, 3.9.17, 3.10.11, 3.11.3]
runs-on: ubuntu-latest
permissions:
checks: read
Expand Down
26 changes: 13 additions & 13 deletions build_binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,23 @@ class Python(NamedTuple):
sha256: str


# generated via bin/gen-pythons
# generated via ./bin/gen-pythons
PYTHONS = {
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, 8, 17): Python(
url='https://www.python.org/ftp/python/3.8.17/Python-3.8.17.tar.xz',
sha256='2e54b0c68191f16552f6de2e97a2396540572a219f6bbb28591a137cecc490a9', # 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, 9, 17): Python(
url='https://www.python.org/ftp/python/3.9.17/Python-3.9.17.tar.xz',
sha256='30ce057c44f283f8ed93606ccbdb8d51dd526bdc4c62cce5e0dc217bfa3e8cee', # 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, 10, 11): Python(
url='https://www.python.org/ftp/python/3.10.11/Python-3.10.11.tar.xz',
sha256='3c3bc3048303721c904a03eb8326b631e921f11cc3be2988456a42f115daf04c', # 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
Version(3, 11, 3): Python(
url='https://www.python.org/ftp/python/3.11.3/Python-3.11.3.tar.xz',
sha256='8a5db99c961a7ecf27c75956189c9602c968751f11dbeae2b900dbff1c085b5e', # noqa: E501
),
}
# end generated
Expand Down

0 comments on commit d9be11b

Please sign in to comment.