Skip to content

Commit

Permalink
add official support to Python 3.13 (#3134)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
emdneto and xrmx authored Dec 31, 2024
1 parent c084ca8 commit 5488287
Show file tree
Hide file tree
Showing 72 changed files with 3,472 additions and 1,962 deletions.
1 change: 1 addition & 0 deletions .github/workflows/generate_workflows_lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dependencies = ["Jinja2", "tox"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ def get_test_job_datas(tox_envs: list, operating_systems: list) -> list:
"py310": "3.10",
"py311": "3.11",
"py312": "3.12",
"py313": "3.13",
}

test_job_datas = []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
uses: actions/checkout@v4

- name: Set up Python 3.12
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"

- name: Install tox
run: pip install tox
Expand Down
Loading

0 comments on commit 5488287

Please sign in to comment.