Skip to content

Commit

Permalink
Merge pull request #354 from lsst-sqre/tickets/DM-48098
Browse files Browse the repository at this point in the history
DM-48098: Add support for Python 3.13
  • Loading branch information
rra authored Dec 12, 2024
2 parents 838d71b + 4a2c154 commit 358d985
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
python:
- "3.11"
- "3.12"
- "3.13"

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/periodic-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
python:
- "3.11"
- "3.12"
- "3.13"

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion docs/_rst_epilog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. _Alembic: https://alembic.sqlalchemy.org/en/latest/
.. _arq: https://arq-docs.helpmanual.io
.. _asyncpg: https://magicstack.github.io/asyncpg/current/
.. _Click: https://click.palletsprojects.com/
.. _Click: https://click.palletsprojects.com/en/stable/
.. _cryptography: https://cryptography.io/en/latest/
.. _FastAPI: https://fastapi.tiangolo.com/
.. _fastapi_safir_app: https://github.com/lsst/templates/tree/main/project_templates/fastapi_safir_app
Expand Down
2 changes: 1 addition & 1 deletion docs/documenteer.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ extensions = [
[sphinx.intersphinx.projects]
aiokafka = "https://aiokafka.readthedocs.io/en/stable"
arq = "https://arq-docs.helpmanual.io"
click = "https://click.palletsprojects.com"
click = "https://click.palletsprojects.com/en/stable"
cryptography = "https://cryptography.io/en/latest"
gidgethub = "https://gidgethub.readthedocs.io/en/latest"
python = "https://docs.python.org/3"
Expand Down
1 change: 1 addition & 0 deletions safir-arq/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX",
Expand Down
1 change: 1 addition & 0 deletions safir-logging/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX",
Expand Down
3 changes: 2 additions & 1 deletion safir/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX",
Expand All @@ -26,7 +27,7 @@ dependencies = [
"aiokafka>=0.11,<1",
"click<9",
"cryptography<45",
"dataclasses-avroschema>=0.65.3,<1",
"dataclasses-avroschema>=0.65.7,<1",
"fastapi<1",
"faststream>0.5,<0.6",
"gidgethub<6",
Expand Down

0 comments on commit 358d985

Please sign in to comment.