From: Oleg Broytman Date: Tue, 24 Sep 2024 18:22:03 +0000 (+0300) Subject: CI(GHActions): Python 3.13 X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=d93eb4cbbcbbd70f7b181bb45d502c1744961fe8;p=sqlconvert.git CI(GHActions): Python 3.13 --- diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 2184191..bba61c1 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -10,7 +10,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] exclude: - os: windows-latest python-version: "2.7" @@ -42,6 +42,7 @@ jobs: - uses: actions/checkout@v4 - uses: conda-incubator/setup-miniconda@v3 with: + channels: conda-forge, conda-forge/label/python_rc miniforge-version: latest python-version: ${{ matrix.python-version }} if: ${{ !contains(fromJSON(env.not_in_conda), matrix.python-version) }} diff --git a/docs/news.rst b/docs/news.rst index c3325d8..9d03134 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -4,7 +4,7 @@ News Version 0.3.1 (in development) ------------------------------ -* Python 3.10, 3.11, 3.12. +* Python 3.10, 3.11, 3.12, 3.13. * CI(GHActions): Install all Python and PyPy versions from ``conda-forge``. diff --git a/setup.py b/setup.py index 3d74634..e6ede98 100755 --- a/setup.py +++ b/setup.py @@ -56,6 +56,7 @@ setup( 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', ], packages=['sqlconvert'], scripts=['scripts/mysql2sql'],