Skip to content

Commit be18ac1

Browse files
committed
remove 3.9 from ci and docs
1 parent 3c8ec21 commit be18ac1

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
23+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2424
steps:
2525
- uses: actions/checkout@v4
2626
- name: Set up Python ${{ matrix.python-version }}
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
strategy:
5050
matrix:
51-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
51+
python-version: ["3.10", "3.11", "3.12", "3.13"]
5252
steps:
5353
- uses: actions/checkout@v4
5454
- name: Set up Python ${{ matrix.python-version }}
@@ -75,7 +75,7 @@ jobs:
7575
runs-on: ubuntu-latest
7676
strategy:
7777
matrix:
78-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
78+
python-version: ["3.10", "3.11", "3.12", "3.13"]
7979
steps:
8080
- uses: actions/checkout@v4
8181
- name: Set up Python ${{ matrix.python-version }}
@@ -102,7 +102,7 @@ jobs:
102102
runs-on: LargeBois
103103
strategy:
104104
matrix:
105-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
105+
python-version: ["3.10", "3.11", "3.12", "3.13"]
106106
# TODO: fix errors so that we can run both `make dev` and `make full`
107107
# dependencies: ['dev', 'full']
108108
# dependencies: ["full"]

.github/workflows/cli-compatibility.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
13+
python-version: []"3.10", "3.11", "3.12", "3.13"]
1414
typer-version: ["0.16.0", "0.17.0", "0.18.0", "0.19.2"]
1515
click-version: ["8.1.0", "8.2.0"]
1616
exclude:
17-
- python-version: "3.9"
18-
click-version: "8.2.0"
1917
- typer-version: "0.16.0"
2018
click-version: "8.2.0"
2119
- typer-version: "0.16.0"

docs/dist/examples/langchain_integration.ipynb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,9 @@
178178
}
179179
],
180180
"source": [
181-
"result = chain.invoke({\"question\": \"What are the top five airlines for domestic travel in the US?\"})\n",
181+
"result = chain.invoke(\n",
182+
" {\"question\": \"What are the top five airlines for domestic travel in the US?\"}\n",
183+
")\n",
182184
"print(result)"
183185
]
184186
},
@@ -213,7 +215,7 @@
213215
"name": "python",
214216
"nbconvert_exporter": "python",
215217
"pygments_lexer": "ipython3",
216-
"version": "3.12.11"
218+
"version": "3.10.16"
217219
}
218220
},
219221
"nbformat": 4,

docs/dist/examples/langchain_integration.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ chain = prompt | model | guard.to_runnable() | output_parser
8989

9090

9191
```python
92-
result = chain.invoke({"question": "What are the top five airlines for domestic travel in the US?"})
92+
result = chain.invoke(
93+
{"question": "What are the top five airlines for domestic travel in the US?"}
94+
)
9395
print(result)
9496
```
9597

docs/dist/getting_started/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ This prints:
148148
149149
### Install the Javascript library
150150
151-
**Note**: The Javascript library works via an I/O bridge to run the underlying Python library. You must have Python 3.9 or greater installed on your system to use the Javascript library.
151+
**Note**: The Javascript library works via an I/O bridge to run the underlying Python library. You must have Python 3.10 or greater installed on your system to use the Javascript library.
152152
153153
154154
```bash

docs/src/getting_started/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ This prints:
148148
149149
### Install the Javascript library
150150
151-
**Note**: The Javascript library works via an I/O bridge to run the underlying Python library. You must have Python 3.9 or greater installed on your system to use the Javascript library.
151+
**Note**: The Javascript library works via an I/O bridge to run the underlying Python library. You must have Python 3.10 or greater installed on your system to use the Javascript library.
152152
153153
154154
```bash

0 commit comments

Comments
 (0)