Skip to content

Commit 37dce20

Browse files
fix(Windows): sanitize paths so they don't contain a colon if not drive letter
1 parent 78ce511 commit 37dce20

17 files changed

Lines changed: 395 additions & 37 deletions

File tree

API_REFERENCE_v1.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@ highlight_theme: darkula
99
---
1010

1111

12-
94668)
12+
60204)
13+
DEBUG urllib3.connectionpool Starting new HTTPS connection (1): logfire-eu.pydantic.dev:443 connectionpool.py:1049
14+
Starting new HTTPS connection (1): logfire-eu.pydantic.dev:443
15+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "GET /v1/info HTTP/1.1" 200 None connectionpool.py:544
16+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0 connectionpool.py:544
17+
https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0
18+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0 connectionpool.py:544
19+
https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0
1320
components:
1421
schemas:
1522
ApplicationReadResponse:
@@ -387,7 +394,7 @@ components:
387394
description: 'Application run payload. It describes which application version
388395
is chosen, and which user data
389396

390-
> 2025-06-01 22:11:44 INFO aignostics.aignostics.utils.boot ⭐ Booting aignostics v0.2.23 (project root /Users/helmut/Code/python-sdk, pid 94682), parent 'Python' (pid boot.py:87
397+
> 2025-06-02 20:28:33 INFO aignostics.aignostics.utils.boot ⭐ Booting aignostics v0.2.29 (project root /Users/helmut/Code/python-sdk, pid 60229), parent 'Python' (pid boot.py:87
391398
392399
should be processed.'
393400
properties:
@@ -1104,3 +1111,9 @@ paths:
11041111
- Public
11051112
servers:
11061113
- url: /api
1114+
DEBUG urllib3.connectionpool Starting new HTTPS connection (1): logfire-eu.pydantic.dev:443 connectionpool.py:1049
1115+
Starting new HTTPS connection (1): logfire-eu.pydantic.dev:443
1116+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0 connectionpool.py:544
1117+
https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0
1118+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "POST /v1/metrics HTTP/1.1" 200 2 connectionpool.py:544
1119+
https://logfire-eu.pydantic.dev:443 "POST /v1/metrics HTTP/1.1" 200 2

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
[🔬 Aignostics Python SDK](https://aignostics.readthedocs.io/en/latest/)
22

3-
(https://github.com/aignostics/python-sdk/compare/v0.2.26..0.2.27) - 2025-06-01
3+
(https://github.com/aignostics/python-sdk/compare/v0.2.28..0.2.29) - 2025-06-02
4+
5+
6+
- *(Windows)* : in windows filenames - ([06fef93](https://github.com/aignostics/python-sdk/commit/06fef932dc28bdb5b0052a144701b61d3eca540a))
7+
8+
9+
(https://github.com/aignostics/python-sdk/compare/v0.2.26..v0.2.27) - 2025-06-01
410

511

612
- Test of notebook, race - ([b5771a9](https://github.com/aignostics/python-sdk/commit/b5771a9f16b489499fc53da12a6e3d9e578c9f87))

CLI_REFERENCE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ $ aignostics [OPTIONS] COMMAND [ARGS]...
1414
* `--show-completion`: Show completion for the current shell, to copy it or customize the installation.
1515
* `--help`: Show this message and exit.
1616

17-
🔬 Aignostics Python SDK v0.2.23 - built with love in Berlin 🐻
17+
🔬 Aignostics Python SDK v0.2.29 - built with love in Berlin 🐻
1818

1919
**Commands**:
2020

@@ -169,7 +169,7 @@ $ aignostics application run execute [OPTIONS] APPLICATION_VERSION_ID METADATA_C
169169

170170
* `--create-subdirectory-for-run / --no-create-subdirectory-for-run`: Create a subdirectory for the results of the run in the destination directory [default: create-subdirectory-for-run]
171171
* `--create-subdirectory-per-item / --no-create-subdirectory-per-item`: Create a subdirectory per item in the destination directory [default: create-subdirectory-per-item]
172-
* `--upload-prefix TEXT`: Prefix for the upload destination. If not given will be set to current milliseconds. [default: 1748808704357.1929]
172+
* `--upload-prefix TEXT`: Prefix for the upload destination. If not given will be set to current milliseconds. [default: 1748888912133.808]
173173
* `--wait-for-completion / --no-wait-for-completion`: Wait for run completion and download results incrementally [default: wait-for-completion]
174174
* `--help`: Show this message and exit.
175175

@@ -225,7 +225,7 @@ $ aignostics application run upload [OPTIONS] APPLICATION_VERSION_ID METADATA_CS
225225

226226
**Options**:
227227

228-
* `--upload-prefix TEXT`: Prefix for the upload destination. If not given will be set to current milliseconds. [default: 1748808704357.271]
228+
* `--upload-prefix TEXT`: Prefix for the upload destination. If not given will be set to current milliseconds. [default: 1748888912133.8857]
229229
* `--help`: Show this message and exit.
230230

231231
#### `aignostics application run submit`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.27
1+
0.2.29

docs/source/_static/openapi_v1.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1-
2025-06-01 22:11:45 INFO aignostics.aignostics.utils.boot ⭐ Booting aignostics v0.2.23 (project root /Users/helmut/Code/python-sdk, pid 94685), parent 'Python' (pid boot.py:87
2-
94668)
1+
2025-06-02 20:28:34 INFO aignostics.aignostics.utils.boot ⭐ Booting aignostics v0.2.29 (project root /Users/helmut/Code/python-sdk, pid 60243), parent 'Python' (pid boot.py:87
2+
60204)
3+
DEBUG urllib3.connectionpool Starting new HTTPS connection (1): logfire-eu.pydantic.dev:443 connectionpool.py:1049
4+
Starting new HTTPS connection (1): logfire-eu.pydantic.dev:443
5+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "GET /v1/info HTTP/1.1" 200 None connectionpool.py:544
6+
2025-06-02 20:28:35 DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0 connectionpool.py:544
7+
https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0
8+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0 connectionpool.py:544
9+
https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0
310
{
411
"openapi": "3.1.0",
512
"info": {
@@ -1448,3 +1455,11 @@
14481455
}
14491456
}
14501457
}
1458+
DEBUG urllib3.connectionpool Starting new HTTPS connection (1): logfire-eu.pydantic.dev:443 connectionpool.py:1049
1459+
Starting new HTTPS connection (1): logfire-eu.pydantic.dev:443
1460+
DEBUG urllib3.connectionpool Starting new HTTPS connection (2): logfire-eu.pydantic.dev:443 connectionpool.py:1049
1461+
Starting new HTTPS connection (2): logfire-eu.pydantic.dev:443
1462+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "POST /v1/metrics HTTP/1.1" 200 2 connectionpool.py:544
1463+
https://logfire-eu.pydantic.dev:443 "POST /v1/metrics HTTP/1.1" 200 2
1464+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0 connectionpool.py:544
1465+
https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0

docs/source/_static/openapi_v1.yaml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1-
2025-06-01 22:11:44 INFO aignostics.aignostics.utils.boot ⭐ Booting aignostics v0.2.23 (project root /Users/helmut/Code/python-sdk, pid 94682), parent 'Python' (pid boot.py:87
2-
94668)
1+
2025-06-02 20:28:33 INFO aignostics.aignostics.utils.boot ⭐ Booting aignostics v0.2.29 (project root /Users/helmut/Code/python-sdk, pid 60229), parent 'Python' (pid boot.py:87
2+
60204)
3+
DEBUG urllib3.connectionpool Starting new HTTPS connection (1): logfire-eu.pydantic.dev:443 connectionpool.py:1049
4+
Starting new HTTPS connection (1): logfire-eu.pydantic.dev:443
5+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "GET /v1/info HTTP/1.1" 200 None connectionpool.py:544
6+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0 connectionpool.py:544
7+
https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0
8+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0 connectionpool.py:544
9+
https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0
310
components:
411
schemas:
512
ApplicationReadResponse:
@@ -1092,3 +1099,9 @@ paths:
10921099
- Public
10931100
servers:
10941101
- url: /api
1102+
DEBUG urllib3.connectionpool Starting new HTTPS connection (1): logfire-eu.pydantic.dev:443 connectionpool.py:1049
1103+
Starting new HTTPS connection (1): logfire-eu.pydantic.dev:443
1104+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0 connectionpool.py:544
1105+
https://logfire-eu.pydantic.dev:443 "POST /v1/traces HTTP/1.1" 200 0
1106+
DEBUG urllib3.connectionpool https://logfire-eu.pydantic.dev:443 "POST /v1/metrics HTTP/1.1" 200 2 connectionpool.py:544
1107+
https://logfire-eu.pydantic.dev:443 "POST /v1/metrics HTTP/1.1" 200 2

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
project = "aignostics"
2828
author = "Helmut Hoffer von Ankershoffen"
2929
copyright = f" (c) 2025-{datetime.now(UTC).year} Aignostics GmbH, Author: {author}" # noqa: A001
30-
version = "0.2.27"
30+
version = "0.2.29"
3131
release = version
3232
github_username = "aignostics"
3333
github_repository = "python-sdk"

examples/notebook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# requires-python = ">=3.13"
33
# dependencies = [
44
# "marimo",
5-
# "aignostics==0.2.27",
5+
# "aignostics==0.2.29",
66
# ]
77
# ///
88

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "aignostics"
3-
version = "0.2.27"
3+
version = "0.2.29"
44
description = "🔬 Python SDK providing access to the Aignostics Platform. Includes Aignostics Launchpad (Desktop Application), Aignostics CLI (Command-Line Interface), example notebooks, and Aignostics Client Library."
55
readme = "README.md"
66
authors = [
@@ -355,7 +355,7 @@ source = ["src/"]
355355

356356

357357
[tool.bumpversion]
358-
current_version = "0.2.27"
358+
current_version = "0.2.29"
359359
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
360360
serialize = ["{major}.{minor}.{patch}"]
361361
search = "{current_version}"

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
sonar.projectKey=aignostics_python-sdk
22
sonar.organization=aignostics
3-
sonar.projectVersion=0.2.27
3+
sonar.projectVersion=0.2.29
44
sonar.projectDescription=🔬 Python SDK providing access to Aignostics AI services.
55
sonar.links.homepage=https://aignostics.readthedocs.io/en/latest/
66
sonar.links.scm=https://github.com/aignostics/python-sdk

0 commit comments

Comments
 (0)