Skip to content

Commit

Permalink
Merge pull request #26 from fugue-project/0.2.1
Browse files Browse the repository at this point in the history
Update supported Python
  • Loading branch information
goodwanghan authored Aug 14, 2024
2 parents fcd26cf + ee65704 commit e3b1775
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
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

0 comments on commit e3b1775

Please sign in to comment.