Skip to content

Commit b4c223e

Browse files
release: 1.33.3 (#85)
* chore(package): lift anyio v4 restriction (#84) * release: 1.33.3
1 parent 1683d9e commit b4c223e

File tree

7 files changed

+30
-23
lines changed

7 files changed

+30
-23
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.33.2"
2+
".": "1.33.3"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.33.3 (2023-12-04)
4+
5+
Full Changelog: [v1.33.2...v1.33.3](https://github.com/orbcorp/orb-python/compare/v1.33.2...v1.33.3)
6+
7+
### Chores
8+
9+
* **package:** lift anyio v4 restriction ([#84](https://github.com/orbcorp/orb-python/issues/84)) ([70cbb10](https://github.com/orbcorp/orb-python/commit/70cbb104fe927cebfa5e3d42a3c29f0ed4ab19ab))
10+
311
## 1.33.2 (2023-12-01)
412

513
Full Changelog: [v1.33.1...v1.33.2](https://github.com/orbcorp/orb-python/compare/v1.33.1...v1.33.2)

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "orb-billing"
3-
version = "1.33.2"
3+
version = "1.33.3"
44
description = "The official Python library for the orb API"
55
readme = "README.md"
66
license = "Apache-2.0"
@@ -11,7 +11,7 @@ dependencies = [
1111
"httpx>=0.23.0, <1",
1212
"pydantic>=1.9.0, <3",
1313
"typing-extensions>=4.5, <5",
14-
"anyio>=3.5.0, <4",
14+
"anyio>=3.5.0, <5",
1515
"distro>=1.7.0, <2",
1616
"sniffio",
1717

@@ -49,7 +49,7 @@ dev-dependencies = [
4949
"pyright==1.1.332",
5050
"mypy==1.7.1",
5151
"black==23.3.0",
52-
"respx==0.19.2",
52+
"respx==0.20.2",
5353
"pytest==7.1.1",
5454
"pytest-asyncio==0.21.1",
5555
"ruff==0.0.282",

requirements-dev.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
-e file:.
1010
annotated-types==0.6.0
11-
anyio==3.7.1
11+
anyio==4.1.0
1212
argcomplete==3.1.2
1313
attrs==23.1.0
1414
black==23.3.0
@@ -20,9 +20,9 @@ distlib==0.3.7
2020
distro==1.8.0
2121
exceptiongroup==1.1.3
2222
filelock==3.12.4
23-
h11==0.12.0
24-
httpcore==0.15.0
25-
httpx==0.23.0
23+
h11==0.14.0
24+
httpcore==1.0.2
25+
httpx==0.25.2
2626
idna==3.4
2727
iniconfig==2.0.0
2828
isort==5.10.1
@@ -41,8 +41,8 @@ pyright==1.1.332
4141
pytest==7.1.1
4242
pytest-asyncio==0.21.1
4343
python-dateutil==2.8.2
44-
respx==0.19.2
45-
rfc3986==1.5.0
44+
pytz==2023.3.post1
45+
respx==0.20.2
4646
ruff==0.0.282
4747
six==1.16.0
4848
sniffio==1.3.0

requirements.lock

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@
88

99
-e file:.
1010
annotated-types==0.6.0
11-
anyio==3.7.1
11+
anyio==4.1.0
1212
certifi==2023.7.22
1313
distro==1.8.0
1414
exceptiongroup==1.1.3
15-
h11==0.12.0
16-
httpcore==0.15.0
17-
httpx==0.23.0
15+
h11==0.14.0
16+
httpcore==1.0.2
17+
httpx==0.25.2
1818
idna==3.4
1919
pydantic==2.4.2
2020
pydantic-core==2.10.1
21-
rfc3986==1.5.0
2221
sniffio==1.3.0
2322
typing-extensions==4.8.0

src/orb/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless.
22

33
__title__ = "orb"
4-
__version__ = "1.33.2" # x-release-please-version
4+
__version__ = "1.33.3" # x-release-please-version

tests/test_client.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import json
77
import asyncio
88
import inspect
9-
from typing import Any, Dict, Union, cast
9+
from typing import Any, Union, cast
1010
from unittest import mock
1111

1212
import httpx
@@ -348,7 +348,7 @@ def test_request_extra_query(self) -> None:
348348
),
349349
),
350350
)
351-
params = cast(Dict[str, str], dict(request.url.params))
351+
params = dict(request.url.params)
352352
assert params == {"my_query_param": "Foo"}
353353

354354
# if both `query` and `extra_query` are given, they are merged
@@ -362,7 +362,7 @@ def test_request_extra_query(self) -> None:
362362
),
363363
),
364364
)
365-
params = cast(Dict[str, str], dict(request.url.params))
365+
params = dict(request.url.params)
366366
assert params == {"bar": "1", "foo": "2"}
367367

368368
# `extra_query` takes priority over `query` when keys clash
@@ -376,7 +376,7 @@ def test_request_extra_query(self) -> None:
376376
),
377377
),
378378
)
379-
params = cast(Dict[str, str], dict(request.url.params))
379+
params = dict(request.url.params)
380380
assert params == {"foo": "2"}
381381

382382
@pytest.mark.respx(base_url=base_url)
@@ -1010,7 +1010,7 @@ def test_request_extra_query(self) -> None:
10101010
),
10111011
),
10121012
)
1013-
params = cast(Dict[str, str], dict(request.url.params))
1013+
params = dict(request.url.params)
10141014
assert params == {"my_query_param": "Foo"}
10151015

10161016
# if both `query` and `extra_query` are given, they are merged
@@ -1024,7 +1024,7 @@ def test_request_extra_query(self) -> None:
10241024
),
10251025
),
10261026
)
1027-
params = cast(Dict[str, str], dict(request.url.params))
1027+
params = dict(request.url.params)
10281028
assert params == {"bar": "1", "foo": "2"}
10291029

10301030
# `extra_query` takes priority over `query` when keys clash
@@ -1038,7 +1038,7 @@ def test_request_extra_query(self) -> None:
10381038
),
10391039
),
10401040
)
1041-
params = cast(Dict[str, str], dict(request.url.params))
1041+
params = dict(request.url.params)
10421042
assert params == {"foo": "2"}
10431043

10441044
@pytest.mark.respx(base_url=base_url)

0 commit comments

Comments
 (0)