Skip to content

Commit d15d95b

Browse files
committed
Update CI to test on 3.10
As part of LangChain 1.0, Python 3.9 is being dropped. This commit updates the CI so that azure langchain packages that update to drop 3.9 as well will be testing under the correct Python version lower bound (instead of GitHub possibly falling back to a different Python version that is available in the environment).
1 parent aeed0da commit d15d95b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/_compile_integration_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
python-version:
23-
- "3.9"
23+
- "3.10"
2424
- "3.12"
2525
name: "poetry run pytest -m compile tests/integration_tests #${{ matrix.python-version }}"
2626
steps:

.github/workflows/_lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Starting new jobs is also relatively slow,
3030
# so linting on fewer versions makes CI faster.
3131
python-version:
32-
- "3.9"
32+
- "3.10"
3333
- "3.12"
3434
steps:
3535
- uses: actions/checkout@v4

.github/workflows/_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
python-version:
23-
- "3.9"
23+
- "3.10"
2424
- "3.12"
2525
name: "make test #${{ matrix.python-version }}"
2626
steps:

0 commit comments

Comments
 (0)