Skip to content

Commit 9bafdaa

Browse files
emdnetoxrmx
andcommitted
add official support to Python 3.13 (open-telemetry#3134)
* add py313 to tox Signed-off-by: emdneto <[email protected]> * fix wrong identation troveclassifiers Signed-off-by: emdneto <[email protected]> * fix pyramid, django Signed-off-by: emdneto <[email protected]> * fix httpx Signed-off-by: emdneto <[email protected]> * fix httpx, grpc and add vertex Signed-off-by: emdneto <[email protected]> * generate-workflows Signed-off-by: emdneto <[email protected]> * fix generate-workflows Signed-off-by: emdneto <[email protected]> * fix celery and psycopg Signed-off-by: emdneto <[email protected]> * add changelog Signed-off-by: emdneto <[email protected]> * Update CHANGELOG.md * Update tox.ini --------- Signed-off-by: emdneto <[email protected]> Co-authored-by: Riccardo Magliocchetti <[email protected]>
1 parent 5aed629 commit 9bafdaa

File tree

72 files changed

+3472
-1962
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+3472
-1962
lines changed

.github/workflows/generate_workflows_lib/pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.10",
2323
"Programming Language :: Python :: 3.11",
2424
"Programming Language :: Python :: 3.12",
25+
"Programming Language :: Python :: 3.13",
2526
"Typing :: Typed",
2627
]
2728
dependencies = ["Jinja2", "tox"]

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ def get_test_job_datas(tox_envs: list, operating_systems: list) -> list:
5353
"py310": "3.10",
5454
"py311": "3.11",
5555
"py312": "3.12",
56+
"py313": "3.13",
5657
}
5758

5859
test_job_datas = []

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/lint.yml.j2

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
2525
uses: actions/checkout@v4
2626

27-
- name: Set up Python 3.12
27+
- name: Set up Python 3.13
2828
uses: actions/setup-python@v5
2929
with:
30-
python-version: "3.12"
30+
python-version: "3.13"
3131

3232
- name: Install tox
3333
run: pip install tox

0 commit comments

Comments
 (0)