diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9293463..4b830e6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,6 +25,7 @@ jobs: - 3.9 - "3.10" - "3.11" + - "3.12" steps: - uses: actions/checkout@v2 @@ -52,10 +53,12 @@ jobs: run: make test - name: "Upload coverage to Codecov" - if: matrix.python-version == 3.8 && matrix.os == 'ubuntu-18.04' - uses: codecov/codecov-action@v1 + if: matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest' + uses: codecov/codecov-action@v4 with: - fail_ci_if_error: true + fail_ci_if_error: false + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} #------------------------------------------------------------------------------- build_cpp_wheels: @@ -74,6 +77,7 @@ jobs: - "cp39*" - "cp310*" - "cp311*" + - "cp312*" steps: - uses: actions/checkout@v2 @@ -81,7 +85,7 @@ jobs: - uses: actions/setup-python@v2 name: Install Python with: - python-version: 3.8 + python-version: "3.10" - name: Install cibuildwheel run: | @@ -110,7 +114,7 @@ jobs: - uses: actions/setup-python@v2 name: Install Python with: - python-version: 3.8 + python-version: "3.10" - name: Build sdist run: | @@ -131,7 +135,7 @@ jobs: - uses: actions/setup-python@v2 name: Install Python with: - python-version: 3.8 + python-version: "3.10" - name: Build sdist run: | diff --git a/RELEASE.md b/RELEASE.md index 8c266d9..a6b489b 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,9 @@ # Release Notes +# 0.2.1 + +* Support Python 3.12 + # 0.2.0 * Remove Python 3.6 3.7 support, add 3.11 support diff --git a/fugue_sql_antlr_version/__init__.py b/fugue_sql_antlr_version/__init__.py index d3ec452..3ced358 100644 --- a/fugue_sql_antlr_version/__init__.py +++ b/fugue_sql_antlr_version/__init__.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.2.1" diff --git a/setup.py b/setup.py index 1c5d912..abf1992 100644 --- a/setup.py +++ b/setup.py @@ -126,6 +126,7 @@ def get_packages(): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", ], python_requires=">=3.8", diff --git a/setup.template b/setup.template index a485d86..424057d 100644 --- a/setup.template +++ b/setup.template @@ -121,6 +121,7 @@ setup( "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", ], python_requires=">=3.8",