Skip to content

Commit 7f173a9

Browse files
committed
Release 0.0.101
1 parent f9707e7 commit 7f173a9

File tree

13 files changed

+10
-226
lines changed

13 files changed

+10
-226
lines changed

.DS_Store

-6 KB
Binary file not shown.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "axiomatic"
33

44
[tool.poetry]
55
name = "axiomatic"
6-
version = "0.0.100"
6+
version = "0.0.101"
77
description = ""
88
readme = "README.md"
99
authors = []

src/.DS_Store

-6 KB
Binary file not shown.

src/axiomatic/.DS_Store

-8 KB
Binary file not shown.

src/axiomatic/__init__.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -84,17 +84,8 @@
8484
Z3Expression,
8585
)
8686
from .errors import UnprocessableEntityError
87-
from . import (
88-
code_execution,
89-
document,
90-
formalization,
91-
fso,
92-
lean,
93-
pic,
94-
requirements,
95-
tools,
96-
)
97-
from .client import AsyncAxiomatic, Axiomatic, AxtractHelper
87+
from . import code_execution, document, formalization, fso, lean, pic, requirements, tools
88+
from .client import AsyncAxiomatic, Axiomatic
9889
from .environment import AxiomaticEnvironment
9990
from .version import __version__
10091

@@ -103,7 +94,6 @@
10394
"AxesInfo",
10495
"Axiomatic",
10596
"AxiomaticEnvironment",
106-
"AxtractHelper",
10797
"Bundle",
10898
"BundleSettingsValue",
10999
"Computation",

src/axiomatic/axtract/validation_results.py

Lines changed: 0 additions & 212 deletions
This file was deleted.

src/axiomatic/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]:
1616
headers: typing.Dict[str, str] = {
1717
"X-Fern-Language": "Python",
1818
"X-Fern-SDK-Name": "axiomatic",
19-
"X-Fern-SDK-Version": "0.0.100",
19+
"X-Fern-SDK-Version": "0.0.101",
2020
}
2121
headers["X-API-Key"] = self.api_key
2222
return headers

src/axiomatic/core/http_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import asyncio
44
import email.utils
5+
import json
56
import re
67
import time
78
import typing

tests/utils/assets/models/circle.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# This file was auto-generated by Fern from our API Definition.
44

5+
import typing_extensions
56
import typing_extensions
67
from axiomatic.core.serialization import FieldMetadata
78

tests/utils/assets/models/object_with_defaults.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# This file was auto-generated by Fern from our API Definition.
44

55
import typing_extensions
6+
import typing_extensions
67

78

89
class ObjectWithDefaultsParams(typing_extensions.TypedDict):

0 commit comments

Comments
 (0)