Skip to content

fix(ci): resolve GitHub Actions workflow errors and dependencies #99

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

Merged
merged 4 commits into from
May 30, 2025
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/beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install bump2version build twine
pip install -e ".[dev]"
pip install -e ".[all,dev]"
- name: Configure git
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install bump2version build twine
pip install -e ".[dev]"
pip install -e ".[all,dev]"
- name: Configure git
run: |
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
# Core lightweight dependencies only
core_deps = [
"pydantic>=2.0,<3.0",
"pydantic-settings>=2.0.0",
"typing-extensions>=4.0",
]

Expand All @@ -43,6 +44,7 @@
],
"cli": [
"typer>=0.12.0",
"pydantic-settings>=2.0.0",
],
"crypto": [
"cryptography>=40.0.0",
Expand All @@ -66,6 +68,7 @@
"aiohttp>=3.8.0",
"requests>=2.30.0",
"typer>=0.12.0",
"pydantic-settings>=2.0.0",
"cryptography>=40.0.0",
],
}
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@ commands =

[pytest]
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
markers =
integration: marks tests as integration tests that may require external dependencies