sweatstack 0.51.0__tar.gz → 0.52.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.
- {sweatstack-0.51.0 → sweatstack-0.52.0}/CHANGELOG.md +6 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/PKG-INFO +1 -1
- {sweatstack-0.51.0 → sweatstack-0.52.0}/pyproject.toml +1 -1
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/client.py +1 -1
- {sweatstack-0.51.0 → sweatstack-0.52.0}/.claude/settings.local.json +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/.gitignore +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/.python-version +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/DEVELOPMENT.md +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/Makefile +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/README.md +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/playground/.ipynb_checkpoints/Untitled-checkpoint.ipynb +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/playground/README.md +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/playground/Sweat Stack examples/Getting started.ipynb +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/playground/Untitled.ipynb +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/playground/hello.py +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/playground/pyproject.toml +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/Sweat Stack examples/Getting started.ipynb +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/__init__.py +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/cli.py +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/constants.py +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/ipython_init.py +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/jupyterlab_oauth2_startup.py +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/openapi_schemas.py +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/py.typed +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/schemas.py +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/streamlit.py +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/sweatshell.py +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/utils.py +0 -0
- {sweatstack-0.51.0 → sweatstack-0.52.0}/uv.lock +0 -0
|
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## [0.52.0] - 2025-09-10
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Changed the default timeout for the HTTP client to 60 seconds.
|
|
13
|
+
|
|
14
|
+
|
|
9
15
|
## [0.51.0] - 2025-08-28
|
|
10
16
|
|
|
11
17
|
### Added
|
|
@@ -647,7 +647,7 @@ class Client(OAuth2Mixin, DelegationMixin, TokenStorageMixin, LocalCacheMixin):
|
|
|
647
647
|
if self.api_key:
|
|
648
648
|
headers["Authorization"] = f"Bearer {self.api_key}"
|
|
649
649
|
|
|
650
|
-
with httpx.Client(base_url=self.url, headers=headers) as client:
|
|
650
|
+
with httpx.Client(base_url=self.url, headers=headers, timeout=60) as client:
|
|
651
651
|
yield client
|
|
652
652
|
|
|
653
653
|
def _print_response_and_raise(self, response: httpx.Response):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sweatstack-0.51.0 → sweatstack-0.52.0}/playground/.ipynb_checkpoints/Untitled-checkpoint.ipynb
RENAMED
|
File without changes
|
|
File without changes
|
{sweatstack-0.51.0 → sweatstack-0.52.0}/playground/Sweat Stack examples/Getting started.ipynb
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sweatstack-0.51.0 → sweatstack-0.52.0}/src/sweatstack/Sweat Stack examples/Getting started.ipynb
RENAMED
|
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
|