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
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
poetry export --format requirements.txt --output requirements.dev --with dev
uv pip install --require-hashes -r requirements.dev
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude .venv,.git
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude .venv,.git --ignore=F824
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
mkdir keys
Expand Down
69 changes: 48 additions & 21 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "atsdk"
version = "0.2.36"
version = "0.2.37"
description = "Python SDK for atPlatform"
authors = ["Umang Shah <shahumang19@gmail.com>","Chris Swan <chris@atsign.com>"]
maintainers = ["Chris Swan <chris@atsign.com>"]
Expand All @@ -16,7 +16,7 @@ requests = "2.32.3"

[tool.poetry.group.dev.dependencies]
pip ="25.0.1"
flake8 = "7.1.2"
flake8 = "7.2.0"
pytest = "8.3.5"

[build-system]
Expand Down
Loading