Skip to content

Commit 2c31899

Browse files
committed
update packages.
1 parent 756b2f9 commit 2c31899

File tree

6 files changed

+8
-13
lines changed

6 files changed

+8
-13
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ repos:
1212
- id: requirements-txt-fixer
1313

1414
- repo: https://github.com/astral-sh/ruff-pre-commit
15-
rev: v0.11.11
15+
rev: v0.12.2
1616
hooks:
1717
- id: ruff
1818
args: [--fix, --exit-non-zero-on-fix]
1919
- id: ruff-format
2020

2121
- repo: https://github.com/RobertCraigie/pyright-python
22-
rev: v1.1.401
22+
rev: v1.1.402
2323
hooks:
2424
- id: pyright

aiowhitebit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"""
66

77
# Version information
8-
__version__ = "0.2.4"
8+
__version__ = "0.2.5"

examples/ws_subscribe_example.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@
33
ws_subscribe_builder,
44
)
55

6-
# For backward compatibility, you can also use:
7-
# from aiowhitebit.clients.public_ws_subscriber import (
8-
# ws_subscribe_builder,
9-
# SubscribeRequest,
10-
# )
116

127
if __name__ == "__main__":
138
import threading

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "aiowhitebit"
7-
version = "0.2.4"
7+
version = "0.2.5"
88
description = "Async Python client for WhiteBit API"
99
readme = "README.md"
1010
authors = [

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# Build tools
44
build==1.2.2
55
pre-commit==4.2.0
6-
pyright==1.1.401
6+
pyright==1.1.402
77

88
# Testing
9-
pytest==8.4.0
9+
pytest==8.4.1
1010
pytest-asyncio==1.0.0
1111
pytest-cov==6.2.1
1212

1313
# Code Quality
14-
ruff==0.11.13
14+
ruff==0.12.2
1515
twine==6.1.0

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
aiodns==3.5.0
22
aiohttp==3.12.13
3-
multidict==6.4.4
3+
multidict==6.6.3
44
pydantic>=2.0.0,<3.0.0
55
uvloop==0.21.0
66
websocket-client==1.8.0

0 commit comments

Comments
 (0)