Skip to content

Commit efb9d91

Browse files
committed
chore: bump to python3.12
1 parent 184d30b commit efb9d91

File tree

9 files changed

+10
-9
lines changed

9 files changed

+10
-9
lines changed

.github/actions/merge-branch/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ inputs:
2222
type: string
2323

2424
python-version:
25-
description: "The version of Python to use, such as 3.11.0"
25+
description: "The version of Python to use, such as 3.12"
2626
required: true
2727
type: string
2828

.github/actions/tests/python/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ branding:
88
color: "orange"
99
inputs:
1010
python-version:
11-
description: "The version of Python to use, such as 3.11.0"
11+
description: "The version of Python to use, such as 3.12"
1212
required: true
1313
type: string
1414
openai-api-organization:

.github/workflows/precommitVersionBumps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Set up Python
5252
uses: actions/setup-python@v5
5353
with:
54-
python-version: "3.11"
54+
python-version: "3.12"
5555

5656
- name: locate site-packages path
5757
shell: bash

.github/workflows/pullRequestController.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ on:
5050
- "./models/**"
5151

5252
env:
53-
python-version: "3.11"
53+
python-version: "3.12"
5454

5555
jobs:
5656
check_for_pending_release:

.github/workflows/semanticVersionBump.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
restore-keys: |
4040
${{ runner.os }}-node
4141
42-
- name: Set up Python 3.11
42+
- name: Set up Python 3.12
4343
uses: actions/setup-python@v5
4444
with:
45-
python-version: "3.11"
45+
python-version: "3.12"
4646

4747
- name: Setup Node.js environment
4848
uses: actions/setup-node@v4

.github/workflows/testsPython.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
- next-major
1616

1717
env:
18-
python-version: "3.11"
18+
python-version: "3.12"
1919

2020
jobs:
2121
python-unit-tests:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
default_language_version:
22
# default language version for each language
3-
python: python3.11
3+
python: python3.12
44
repos:
55
- repo: https://github.com/codespell-project/codespell
66
rev: v2.3.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ These are just a few examples of the analytics and accounting courses offered at
122122
- [OpenAI platform API key](https://platform.openai.com/).
123123
_If you're new to OpenAI API then see [How to Get an OpenAI API Key](./doc/OPENAI_API_GETTING_STARTED_GUIDE.md)_
124124
- [Pinecone](https://www.pinecone.io/) API key.
125-
- [Python 3.11](https://www.python.org/downloads/): for creating virtual environment used for building AWS Lambda Layer, and locally by pre-commit linters and code formatters.
125+
- [Python 3.12](https://www.python.org/downloads/): for creating virtual environment used for building AWS Lambda Layer, and locally by pre-commit linters and code formatters.
126126
- [NodeJS](https://nodejs.org/en/download): used with NPM for local ReactJS developer environment, and for configuring/testing Semantic Release.
127127

128128
## Configuration defaults

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ python =
1414
3.9: gitlint,py39,flake8
1515
3.10: gitlint,py310,flake8
1616
3.11: gitlint,py311,flake8,mypy,black,pylint
17+
3.12: gitlint,py311,flake8,mypy,black,pylint
1718

1819
[testenv]
1920
deps = -rrequirements.txt

0 commit comments

Comments
 (0)