Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
- next
branches-ignore:
- 'generated'
- 'codegen/**'
- 'integrated/**'
- 'stl-preview-head/**'
- 'stl-preview-base/**'

jobs:
lint:
timeout-minutes: 10
name: lint
runs-on: ubuntu-latest
runs-on: ${{ github.repository == 'stainless-sdks/orb-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4

Expand All @@ -33,7 +33,7 @@ jobs:
test:
timeout-minutes: 10
name: test
runs-on: ubuntu-latest
runs-on: ${{ github.repository == 'stainless-sdks/orb-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "3.19.2"
".": "3.19.3"
}
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## 3.19.3 (2025-05-09)

Full Changelog: [v3.19.2...v3.19.3](https://github.com/orbcorp/orb-python/compare/v3.19.2...v3.19.3)

### Bug Fixes

* **package:** support direct resource imports ([f1b3637](https://github.com/orbcorp/orb-python/commit/f1b36376d33f17c1f2e6a6233a75ea278587398e))


### Chores

* broadly detect json family of content-type headers ([3acaf7c](https://github.com/orbcorp/orb-python/commit/3acaf7c67e8d50d65b70f9e17fc5f828297a7f17))
* **ci:** only use depot for staging repos ([3bec73f](https://github.com/orbcorp/orb-python/commit/3bec73ffde0195acc8fb8bf662f4ebaf787ff6bc))
* **ci:** run on more branches and use depot runners ([8e10744](https://github.com/orbcorp/orb-python/commit/8e107446f9a89c01a62ef4e853ffb3f17f7e4277))
* **internal:** avoid errors for isinstance checks on proxies ([5bbd76d](https://github.com/orbcorp/orb-python/commit/5bbd76d645f33c75a78272cd080096196c1f1407))
* **internal:** minor formatting changes ([0e52bb3](https://github.com/orbcorp/orb-python/commit/0e52bb34ec9734c03ca0a225467c4b6d6e158b4e))
* use lazy imports for resources ([e79a6ec](https://github.com/orbcorp/orb-python/commit/e79a6ec9eb46e1b04b0b511edaf25294e27934fc))

## 3.19.2 (2025-04-22)

Full Changelog: [v3.19.1...v3.19.2](https://github.com/orbcorp/orb-python/compare/v3.19.1...v3.19.2)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "orb-billing"
version = "3.19.2"
version = "3.19.3"
description = "The official Python library for the orb API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
5 changes: 5 additions & 0 deletions src/orb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

import typing as _t

from . import types
from ._types import NOT_GIVEN, Omit, NoneType, NotGiven, Transport, ProxiesTypes
from ._utils import file_from_path
Expand Down Expand Up @@ -92,6 +94,9 @@
"DefaultAsyncHttpxClient",
]

if not _t.TYPE_CHECKING:
from ._utils._resources_proxy import resources as resources

_setup_logging()

# Update the __module__ attribute for exported symbols so that
Expand Down
Loading