Skip to content

Commit

Permalink
Update deps; add rubin.nublado.client
Browse files Browse the repository at this point in the history
  • Loading branch information
athornton committed Oct 17, 2024
1 parent ecfd69d commit bb2cd40
Show file tree
Hide file tree
Showing 26 changed files with 1,135 additions and 3,743 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repos:
- id: check-toml

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.2
rev: v0.6.8
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ warn_required_dynamic_aliases = true
warn_untyped_fields = true

[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
asyncio_mode = "strict"
filterwarnings = [
# Bug in aiojobs
Expand Down
1,280 changes: 139 additions & 1,141 deletions requirements/dev.txt

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion requirements/main.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,16 @@ httpx
httpx-sse
jinja2
pydantic>2
pydantic-settings
pydantic-settings==2.5.2
# 2.6 dies horribly with:
# pydantic_core._pydantic_core.ValidationError: 1 validation error for GitHubRefreshAppConfig
# MOBU_GITHUB_REFRESH_APP_WEBHOOK_SECRET
# Field required [type=missing, input_value={'accepted_github_orgs': ...', 'org2', 'lsst-sqre']}, input_type=dict]
# For further information visit https://errors.pydantic.dev/2.9/v/missing
pyvo
pyyaml
rubin-nublado-client@git+https://github.com/lsst-sqre/nublado@tickets/DM-46480#subdirectory=client
#rubin.nublado.client
safir>=6.1.0
shortuuid
structlog
Expand Down
890 changes: 66 additions & 824 deletions requirements/main.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/mobu/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""The mobu service."""

__all__ = ["__version__", "metadata"]
__all__ = ["__version__", "metadata", "main"]

from importlib.metadata import PackageNotFoundError, version

Expand Down
Loading

0 comments on commit bb2cd40

Please sign in to comment.