Skip to content
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
9 changes: 0 additions & 9 deletions .flake8

This file was deleted.

4 changes: 0 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@ jobs:
run: |
uv sync --all-groups --frozen

- name: Lint with flake8 ❄️
run: |
uv run flake8

- name: Test with pytest ✅
run: |
uv run pytest tests
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ jobs:
run: |
uv sync --all-groups --frozen

- name: Lint with flake8 ❄️
run: |
uv run flake8

- name: Test with pytest ✅
run: |
uv run pytest tests
18 changes: 11 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[project]
name = "keboola.component"
version = "0.0.0" # replaced by the actual version based on the release tag in github actions
version = "1.9.0" # replaced by the actual version based on the release tag in github actions
dependencies = [
"pygelf",
"pytz<2021.0",
"deprecated",
"keboola.vcr>=0.1.1",
]
requires-python = ">=3.8"
requires-python = ">=3.10"

authors = [
{ name = "Keboola KDS Team", email = "support@keboola.com" }
Expand All @@ -17,8 +17,6 @@ license = "MIT"
license-files = [ "LICENSE" ]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -40,9 +38,8 @@ Repository = "https://github.com/keboola/python-component"

[dependency-groups]
dev = [
"flake8>=5.0.4",
"pytest>=8.3.5",
"ruff>=0.13.2",
"ruff>=0.15.2",
"pdoc3",
]

Expand All @@ -51,3 +48,10 @@ name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true

[tool.ruff]
line-length = 120
target-version = "py310"

[tool.ruff.lint]
extend-select = ["I", "UP"]
Loading