]> git.phdru.name Git - sqlconvert.git/commitdiff
CI(GHActions): Python 3.13
authorOleg Broytman <phd@phdru.name>
Tue, 24 Sep 2024 18:22:03 +0000 (21:22 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 24 Sep 2024 18:24:16 +0000 (21:24 +0300)
.github/workflows/run-tests.yaml
docs/news.rst
setup.py

index 218419101b3a86a97ab17e7ec31a28eded43d47a..bba61c1263235941d12d60db01293604f76eaa52 100644 (file)
@@ -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) }}
index c3325d8df901b7b3e4927550eeffb4db7371e9db..9d031345e92c8cf67f6ee9a6f93ef3dda8d6d21f 100644 (file)
@@ -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``.
 
index 3d74634341080352de9c0b8228b23f464449d02b..e6ede98479b515c036cef29207525a749fea546c 100755 (executable)
--- 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'],