Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update supported Python #26

Merged
merged 3 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- 3.9
- "3.10"
- "3.11"
- "3.12"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -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:
Expand All @@ -74,14 +77,15 @@ jobs:
- "cp39*"
- "cp310*"
- "cp311*"
- "cp312*"

steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
name: Install Python
with:
python-version: 3.8
python-version: "3.10"

- name: Install cibuildwheel
run: |
Expand Down Expand Up @@ -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: |
Expand All @@ -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: |
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.1

* Support Python 3.12

# 0.2.0

* Remove Python 3.6 3.7 support, add 3.11 support
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.2.0"
__version__ = "0.2.1"
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions setup.template
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading