Skip to content

Commit df0b697

Browse files
authored
Merge pull request #1248 from Mause/Mause-patch-3
build: fix licence warning
2 parents 994bcf5 + 1f2f5c9 commit df0b697

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/pythonapp.yaml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,11 @@ jobs:
2222
run: rm -rf ~/.duckdb
2323
- uses: fjwillemsen/setup-nox2@v3.0.0
2424
- run: python -m pip install github-action-utils uv -U
25-
- name: Lint with flake8
26-
run: |
27-
pip install flake8
28-
# stop the build if there are Python syntax errors or undefined names
29-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
30-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
31-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3225
- name: List nox envs
3326
run: nox -l
3427
- run: nox --pythons '${{ matrix.python }}'
28+
- run: uvx poetry build
29+
- run: uvx poetry check --strict
3530
- name: Publish Unit Test Results
3631
uses: EnricoMi/publish-unit-test-result-action@v2
3732
if: always()

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ description = "SQLAlchemy driver for duckdb"
55
authors = [
66
{name = "Elliana May", email = "me@mause.me"},
77
]
8-
license = {text = "MIT"}
8+
license = "MIT"
9+
licence-files = ["LICENCE"]
910
requires-python = ">=3.9,<4"
1011
readme = "README.md"
1112
dependencies = [

0 commit comments

Comments
 (0)