From 447fd378e6a113d9225342c246e31fb2dfc2c328 Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Thu, 6 Jun 2024 13:50:15 -0300 Subject: [PATCH 1/6] Enable 3.13 and enable Python pre-releases in tests.yaml --- .github/workflows/tests.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index d73657f..39c52c0 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -9,17 +9,18 @@ jobs: strategy: matrix: os: [macos-latest, windows-latest, ubuntu-latest] - python-version: ["3.11", "3.12"] - build-version: ["3.11", "3.12"] + python-version: ["3.11", "3.12", "3.13"] + build-version: ["3.11", "3.12", "3.13"] steps: - name: Checkout repo uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Install tree (macOS) if: matrix.os == 'macos-latest' From b1e317ee408719b3a3c75ec245a28831ac270378 Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Thu, 6 Jun 2024 14:50:33 -0300 Subject: [PATCH 2/6] Enable Python 3.13 trove in pyproject.toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index da0d123..4d976de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Utilities", ] dynamic = [ From d34597e56ad3889bd8cd9dd6089809929acde2d7 Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Thu, 6 Jun 2024 14:50:55 -0300 Subject: [PATCH 3/6] Update action/setup-python@v5 in pre-commit.yaml --- .github/workflows/pre-commit.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index 3bcf53d..e2bd49c 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: "3.x" - uses: pre-commit/action@v3.0.0 From 2488cacd69e349249a4a36bfe0719dcd91761ec2 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 6 Jun 2024 17:53:49 +0000 Subject: [PATCH 4/6] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4d976de..da0d123 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,6 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.13", "Topic :: Utilities", ] dynamic = [ From 4fe67973575bbc1b7a1adabbc8c26aa1f704e540 Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Thu, 6 Jun 2024 15:47:07 -0300 Subject: [PATCH 5/6] Set pyproject-fmt max_supported_python to 3.13 --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index da0d123..5577cf6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,6 +34,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", "Topic :: Utilities", ] + dynamic = [ "version", ] @@ -60,3 +61,6 @@ path = "bootstrapper/__init__.py" [tool.isort] profile = "black" known_first_party = "bootstrapper" + +[tool.pyproject-fmt] +max_supported_python = "3.13" From 7ede21743d630268fe188a80102d21658d50e472 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 6 Jun 2024 18:47:13 +0000 Subject: [PATCH 6/6] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5577cf6..0071933 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,9 +32,9 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Utilities", ] - dynamic = [ "version", ]