Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 43b8345

Browse files
committed
Run tests under 3.13.0-rc2
1 parent c6059a2 commit 43b8345

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/python-package.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
15+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0rc2']
1616

1717
container:
1818
image: python:${{ matrix.python-version }}
@@ -45,7 +45,7 @@ jobs:
4545
CASS_DRIVER_NO_EXTENSIONS: theytaketoolongtobuild
4646
run: |
4747
pip install pipx
48-
pipx install poetry==1.8.2
48+
pipx install poetry==1.8.3
4949
make .venv
5050
5151
- name: Lint

.github/workflows/python-publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- name: Install dependencies
2424
run: |
25-
pipx install poetry==1.8.2
25+
pipx install poetry==1.8.3
2626
2727
- name: Build and publish
2828
env:

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
FROM ghcr.io/reddit/thrift-compiler:0.19.0 AS thrift
22

3-
FROM python:3.12
3+
FROM public.ecr.aws/docker/library/python:3.13.0rc2-slim-bookworm
44

55
COPY --from=thrift /usr/local/bin/thrift /usr/local/bin/thrift
66

77
WORKDIR /src
88

99
RUN python -m venv /tmp/poetry && \
10-
/tmp/poetry/bin/pip install poetry==1.8.2 && \
10+
/tmp/poetry/bin/pip install poetry==1.8.3 && \
1111
ln -s /tmp/poetry/bin/poetry /usr/local/bin/poetry
1212

1313
COPY pyproject.toml poetry.lock ./

0 commit comments

Comments
 (0)