From a51f9abec51c6cc2d6bcb30ad55f3d70828f6686 Mon Sep 17 00:00:00 2001 From: Han Wang Date: Mon, 4 Dec 2023 07:08:58 +0000 Subject: [PATCH] Add python 3.11 support --- .github/workflows/build.yml | 2 +- RELEASE.md | 4 ++++ fugue_sql_antlr_version/__init__.py | 2 +- setup.py | 5 ++--- setup.template | 5 ++--- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0e2dee7..17b2942 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,10 +21,10 @@ jobs: - windows-latest # - macos-11 python-version: - - 3.7 - 3.8 - 3.9 - "3.10" + - "3.11" steps: - uses: actions/checkout@v2 diff --git a/RELEASE.md b/RELEASE.md index 4384161..8c266d9 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,9 @@ # Release Notes +# 0.2.0 + +* Remove Python 3.6 3.7 support, add 3.11 support + # 0.1.8 * Remove the lower constraint of antlr dependency from requirements.txt and template diff --git a/fugue_sql_antlr_version/__init__.py b/fugue_sql_antlr_version/__init__.py index 9cb17e7..d3ec452 100644 --- a/fugue_sql_antlr_version/__init__.py +++ b/fugue_sql_antlr_version/__init__.py @@ -1 +1 @@ -__version__ = "0.1.8" +__version__ = "0.2.0" diff --git a/setup.py b/setup.py index 4829d47..1c5d912 100644 --- a/setup.py +++ b/setup.py @@ -122,14 +122,13 @@ def get_packages(): "Topic :: Software Development :: Libraries :: Python Modules", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3 :: Only", ], - python_requires=">=3.6", + python_requires=">=3.8", package_data={"fugue_sql_antlr_cpp": package_files("fugue_sql_antlr_cpp")}, ext_modules=get_ext_modules(), ) diff --git a/setup.template b/setup.template index 76c81e1..a485d86 100644 --- a/setup.template +++ b/setup.template @@ -117,14 +117,13 @@ setup( "Topic :: Software Development :: Libraries :: Python Modules", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3 :: Only", ], - python_requires=">=3.6", + python_requires=">=3.8", package_data={"fugue_sql_antlr_cpp": package_files("fugue_sql_antlr_cpp")}, ext_modules=get_ext_modules(), )