anydi 0.37.4a0__tar.gz → 0.38.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- anydi-0.38.0/.readthedocs.yaml +20 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/PKG-INFO +1 -1
- {anydi-0.37.4a0 → anydi-0.38.0}/pyproject.toml +1 -1
- {anydi-0.37.4a0 → anydi-0.38.0}/uv.lock +1 -1
- anydi-0.37.4a0/.readthedocs.yml +0 -15
- {anydi-0.37.4a0 → anydi-0.38.0}/.editorconfig +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/.github/workflows/ci.yml +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/.gitignore +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/LICENSE +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/Makefile +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/README.md +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/_container.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/_context.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/_provider.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/_types.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/_utils.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/_utils.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/django/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/django/_container.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/django/_settings.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/django/_utils.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/django/apps.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/django/middleware.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/django/ninja/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/django/ninja/_operation.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/django/ninja/_signature.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/fastapi.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/faststream.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/pydantic_settings.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/pytest_plugin.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/starlette/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/ext/starlette/middleware.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/anydi/py.typed +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/docs/examples/basic.md +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/docs/extensions/django.md +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/docs/extensions/fastapi.md +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/docs/extensions/faststream.md +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/docs/extensions/pydantic_settings.md +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/docs/index.md +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/docs/usage.md +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/mkdocs.yml +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/conftest.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/api/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/api/router.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/api/test_router.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/api/urls.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/conftest.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/container.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/scan/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/services.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/settings.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/test_views.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/urls.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/django/views.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/fastapi/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/fastapi/app.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/fastapi/conftest.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/fastapi/test_auto_register.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/fastapi/test_ext.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/fastapi/test_routes.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/faststream/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/faststream/test_ext.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/faststream/test_subscribers.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/fixtures.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/starlette/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/starlette/app.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/starlette/conftest.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/starlette/test_routes.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/test_pydantic.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/ext/test_pytest_plugin.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/fixtures.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/scan_app/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/scan_app/a/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/scan_app/a/a1/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/scan_app/a/a1/handlers.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/scan_app/a/a2/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/scan_app/a/a2/a21/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/scan_app/a/a2/a21/handlers.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/scan_app/a/a3/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/scan_app/a/a3/handlers.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/scan_app/b/__init__.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/scan_app/b/handlers.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/test_container.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/test_provider.py +0 -0
- {anydi-0.37.4a0 → anydi-0.38.0}/tests/test_utils.py +0 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
|
|
3
|
+
build:
|
|
4
|
+
os: ubuntu-24.04
|
|
5
|
+
tools:
|
|
6
|
+
python: "3.13"
|
|
7
|
+
jobs:
|
|
8
|
+
create_environment:
|
|
9
|
+
- asdf plugin add uv
|
|
10
|
+
- asdf install uv latest
|
|
11
|
+
- asdf global uv latest
|
|
12
|
+
- uv venv
|
|
13
|
+
install:
|
|
14
|
+
- uv sync --frozen --group docs
|
|
15
|
+
build:
|
|
16
|
+
html:
|
|
17
|
+
- NO_COLOR=1 uv run mkdocs build --strict --site-dir $READTHEDOCS_OUTPUT/html
|
|
18
|
+
|
|
19
|
+
mkdocs:
|
|
20
|
+
configuration: mkdocs.yml
|
anydi-0.37.4a0/.readthedocs.yml
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
version: 2
|
|
2
|
-
|
|
3
|
-
build:
|
|
4
|
-
os: ubuntu-20.04
|
|
5
|
-
tools:
|
|
6
|
-
python: "3.10"
|
|
7
|
-
jobs:
|
|
8
|
-
post_create_environment:
|
|
9
|
-
- pip install poetry
|
|
10
|
-
- poetry config virtualenvs.create false
|
|
11
|
-
post_install:
|
|
12
|
-
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install -E docs
|
|
13
|
-
|
|
14
|
-
mkdocs:
|
|
15
|
-
configuration: mkdocs.yml
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|