Skip to content

Commit

Permalink
Merge pull request #23 from fugue-project/3.11
Browse files Browse the repository at this point in the history
Add python 3.11 support
  • Loading branch information
goodwanghan authored Dec 4, 2023
2 parents 5fa1b22 + a51f9ab commit 3f01508
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion fugue_sql_antlr_version/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.8"
__version__ = "0.2.0"
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
)
5 changes: 2 additions & 3 deletions setup.template
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
)

0 comments on commit 3f01508

Please sign in to comment.