Skip to content

Commit 8971050

Browse files
committed
chore: bump python versions
Signed-off-by: Gabor Boros <gabor.brs@gmail.com>
1 parent ab7c4db commit 8971050

File tree

3 files changed

+940
-974
lines changed

3 files changed

+940
-974
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: ['3.8']
13+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1414

1515
steps:
1616
- uses: actions/checkout@v3
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install RethinkDB and compile proto file
2828
run: |
2929
./scripts/install-db.sh
30-
make ql2.proto
30+
make protobuf
3131
3232
- name: Run linters
3333
run: |
@@ -45,7 +45,7 @@ jobs:
4545
killall rethinkdb
4646
4747
- name: Upload coverage report
48-
if: ${{ matrix.python-version == '3.8' }}
48+
if: ${{ matrix.python-version == '3.13' }}
4949
env:
5050
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
5151
run: |
@@ -55,5 +55,5 @@ jobs:
5555
env:
5656
POETRY_HTTP_BASIC_PYPI_USERNAME: ${{ secrets.POETRY_HTTP_BASIC_PYPI_USERNAME }}
5757
POETRY_HTTP_BASIC_PYPI_PASSWORD: ${{ secrets.POETRY_HTTP_BASIC_PYPI_PASSWORD }}
58-
if: ${{ github.event_name == 'release' && matrix.python-version == '3.8' }}
58+
if: ${{ github.event_name == 'release' && matrix.python-version == '3.13' }}
5959
run: poetry publish --build

0 commit comments

Comments
 (0)