Skip to content

Commit 396ed2a

Browse files
committed
Use python 3.11 everywhere
1 parent 7019674 commit 396ed2a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ main ]
88

99
env:
10-
PYTHON_VERSION: "3.12"
10+
PYTHON_VERSION: "3.11"
1111
PIPELINE_FAMILY: "general"
1212

1313
jobs:

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
PACKAGE: "unstructured-api"
1212
PIPELINE_FAMILY: "general"
1313
PIP_VERSION: "25.1.1"
14-
PYTHON_VERSION: "3.12"
14+
PYTHON_VERSION: "3.11"
1515

1616
jobs:
1717
setup:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,12 +289,12 @@ curl -X 'POST'
289289
* Using `pyenv` to manage virtualenv's is recommended
290290
* Mac install instructions. See [here](https://github.com/Unstructured-IO/community#mac--homebrew) for more detailed instructions.
291291
* `brew install pyenv-virtualenv`
292-
* `pyenv install 3.12.11`
292+
* `pyenv install 3.11`
293293
* Linux instructions are available [here](https://github.com/Unstructured-IO/community#linux).
294294

295295
* Create a virtualenv to work in and activate it, e.g. for one named `document-processing`:
296296

297-
`pyenv virtualenv 3.12.11
297+
`pyenv virtualenv 3.11
298298
unstructured-api` <br />
299299
`pyenv activate unstructured-api`
300300

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ line-length = 100
33

44
[tool.pyright]
55
pythonPlatform = "Linux"
6-
pythonVersion = "3.12"
6+
pythonVersion = "3.11"
77
reportUnnecessaryCast = true
88
typeCheckingMode = "strict"
99

0 commit comments

Comments
 (0)