Skip to content

Commit 87a23cc

Browse files
dependabot[bot]d3rky
authored andcommitted
deps(deps-dev): bump the python-development group with 4 updates
Bumps the python-development group with 4 updates: [ipython](https://github.com/ipython/ipython), [pyfakefs](https://github.com/pytest-dev/pyfakefs), [ruff](https://github.com/astral-sh/ruff) and [types-python-dateutil](https://github.com/typeshed-internal/stub_uploader). Updates `ipython` from 9.10.0 to 9.11.0 - [Release notes](https://github.com/ipython/ipython/releases) - [Commits](ipython/ipython@9.10.0...9.11.0) Updates `pyfakefs` from 6.1.3 to 6.1.4 - [Release notes](https://github.com/pytest-dev/pyfakefs/releases) - [Changelog](https://github.com/pytest-dev/pyfakefs/blob/main/CHANGES.md) - [Commits](pytest-dev/pyfakefs@v6.1.3...v6.1.4) Updates `ruff` from 0.15.4 to 0.15.5 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.15.4...0.15.5) Updates `types-python-dateutil` from 2.9.0.20260302 to 2.9.0.20260305 - [Commits](https://github.com/typeshed-internal/stub_uploader/commits) --- updated-dependencies: - dependency-name: ipython dependency-version: 9.11.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-development - dependency-name: pyfakefs dependency-version: 6.1.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: python-development - dependency-name: ruff dependency-version: 0.15.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: python-development - dependency-name: types-python-dateutil dependency-version: 2.9.0.20260305 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: python-development ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 66287e3 commit 87a23cc

File tree

3 files changed

+35
-33
lines changed

3 files changed

+35
-33
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: v0.15.4
3+
rev: v0.15.5
44
hooks:
55
- id: ruff-check
66
- id: ruff-format

docs/PROJECT_DESCRIPTION.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ uv add mpt-api-client
2424
from mpt_api_client import MPTClient
2525

2626
# client = MPTClient(api_key=<your_api_key>, base_url=<mpt_api_url>)
27-
client = MPTClient() # Reads MPT_API_TOKEN and MPT_API_BASE_URL from the environment
27+
client = MPTClient() # Reads MPT_API_TOKEN and MPT_API_BASE_URL from the environment
2828

2929
for product in client.catalog.products.iterate():
3030
print(product.name)
@@ -36,12 +36,14 @@ for product in client.catalog.products.iterate():
3636
import asyncio
3737
from mpt_api_client import AsyncMPTClient
3838

39+
3940
async def main():
4041
# client = AsyncMPTClient(api_key=<your_api_key>, base_url=<mpt_api_url>)
41-
client = AsyncMPTClient() # Reads MPT_API_TOKEN and MPT_API_BASE_URL from the environment
42+
client = AsyncMPTClient() # Reads MPT_API_TOKEN and MPT_API_BASE_URL from the environment
4243
async for product in client.catalog.products.iterate():
4344
print(product.name)
4445

46+
4547
asyncio.run(main())
4648
```
4749

uv.lock

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)