Skip to content

Commit 399b755

Browse files
committed
Test Python 3.12 in CI
1 parent 80ea19c commit 399b755

File tree

8 files changed

+9
-10
lines changed

8 files changed

+9
-10
lines changed

.github/workflows/_compile_integration_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
strategy:
2121
matrix:
2222
python-version:
23-
- "3.8"
2423
- "3.9"
2524
- "3.10"
2625
- "3.11"
26+
- "3.12"
2727
name: "poetry run pytest -m compile tests/integration_tests #${{ matrix.python-version }}"
2828
steps:
2929
- uses: actions/checkout@v4

.github/workflows/_integration_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
strategy:
2020
matrix:
2121
python-version:
22-
# - "3.8"
23-
- "3.11"
22+
# - "3.9"
23+
- "3.12"
2424
name: "make integration_tests #${{ matrix.python-version }}"
2525
steps:
2626
- uses: actions/checkout@v4

.github/workflows/_lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
# Starting new jobs is also relatively slow,
3030
# so linting on fewer versions makes CI faster.
3131
python-version:
32-
- "3.8"
33-
- "3.11"
32+
- "3.9"
33+
- "3.12"
3434
steps:
3535
- uses: actions/checkout@v4
3636

.github/workflows/_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
default: 'libs/astradb'
1616

1717
env:
18-
PYTHON_VERSION: "3.11"
18+
PYTHON_VERSION: "3.12"
1919
POETRY_VERSION: "1.7.1"
2020

2121
jobs:

.github/workflows/_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
strategy:
2121
matrix:
2222
python-version:
23-
- "3.8"
2423
- "3.9"
2524
- "3.10"
2625
- "3.11"
26+
- "3.12"
2727
name: "make test #${{ matrix.python-version }}"
2828
steps:
2929
- uses: actions/checkout@v4

.github/workflows/_test_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
env:
1212
POETRY_VERSION: "1.7.1"
13-
PYTHON_VERSION: "3.10"
13+
PYTHON_VERSION: "3.12"
1414

1515
jobs:
1616
build:

.github/workflows/check_diffs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v4
2727
- uses: actions/setup-python@v5
2828
with:
29-
python-version: '3.10'
29+
python-version: '3.12'
3030
- id: files
3131
uses: Ana06/[email protected]
3232
- id: set-matrix

libs/astradb/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ license = "MIT"
1414
python = ">=3.9,<4.0"
1515
langchain-core = ">=0.1.31,<0.4"
1616
astrapy = "^1.4"
17-
# Resolve numpy version for 3.8 to 3.12+
1817
numpy = "^1.26.0"
1918

2019
[tool.poetry.group.test]

0 commit comments

Comments
 (0)