diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 7a86867..735c0fc 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -31,7 +31,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: "3.13" - name: Install uv uses: astral-sh/setup-uv@v6 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3fb6f93..11aca78 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: "3.13" - name: Install dependencies run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 355ca14..b0aaed6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: "3.13" - name: Install uv uses: astral-sh/setup-uv@v6 diff --git a/pyproject.toml b/pyproject.toml index b6c1ee8..9fdcd16 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Office/Business :: Financial", "Topic :: Office/Business :: Financial :: Accounting", "Topic :: Software Development :: Libraries :: Python Modules", @@ -76,7 +77,7 @@ packages = ["robosystems_client"] include = ["robosystems_client/extensions"] exclude = ["robosystems_client/extensions/tests"] extraPaths = ["."] -pythonVersion = "3.12" +pythonVersion = "3.13" venvPath = "." venv = ".venv" typeCheckingMode = "standard"