Skip to content

Commit d7f9b87

Browse files
committed
Release 0.0.97
1 parent 6740dac commit d7f9b87

File tree

4 files changed

+2
-18
lines changed

4 files changed

+2
-18
lines changed

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.96"
6+
version = "0.0.97"
77
description = ""
88
readme = "README.md"
99
authors = []

reference.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2640,14 +2640,6 @@ client.pic.circuit.get_sax_spectrum(
26402640
<dl>
26412641
<dd>
26422642

2643-
**jit_compile:** `typing.Optional[bool]`
2644-
2645-
</dd>
2646-
</dl>
2647-
2648-
<dl>
2649-
<dd>
2650-
26512643
**use_ideal_component_models:** `typing.Optional[bool]`
26522644

26532645
</dd>

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.96",
19+
"X-Fern-SDK-Version": "0.0.97",
2020
}
2121
headers["X-API-Key"] = self.api_key
2222
return headers

src/axiomatic/pic/circuit/client.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,6 @@ def get_sax_spectrum(
856856
port_pairs: typing.Sequence[typing.Sequence[typing.Optional[typing.Any]]],
857857
settings: Settings,
858858
wls: typing.Sequence[float],
859-
jit_compile: typing.Optional[bool] = OMIT,
860859
use_ideal_component_models: typing.Optional[bool] = OMIT,
861860
request_options: typing.Optional[RequestOptions] = None,
862861
) -> GetSpectrumResponse:
@@ -873,8 +872,6 @@ def get_sax_spectrum(
873872
874873
wls : typing.Sequence[float]
875874
876-
jit_compile : typing.Optional[bool]
877-
878875
use_ideal_component_models : typing.Optional[bool]
879876
880877
request_options : typing.Optional[RequestOptions]
@@ -907,7 +904,6 @@ def get_sax_spectrum(
907904
object_=netlist, annotation=Netlist, direction="write"
908905
),
909906
"port_pairs": port_pairs,
910-
"jit_compile": jit_compile,
911907
"settings": convert_and_respect_annotation_metadata(
912908
object_=settings, annotation=Settings, direction="write"
913909
),
@@ -1920,7 +1916,6 @@ async def get_sax_spectrum(
19201916
port_pairs: typing.Sequence[typing.Sequence[typing.Optional[typing.Any]]],
19211917
settings: Settings,
19221918
wls: typing.Sequence[float],
1923-
jit_compile: typing.Optional[bool] = OMIT,
19241919
use_ideal_component_models: typing.Optional[bool] = OMIT,
19251920
request_options: typing.Optional[RequestOptions] = None,
19261921
) -> GetSpectrumResponse:
@@ -1937,8 +1932,6 @@ async def get_sax_spectrum(
19371932
19381933
wls : typing.Sequence[float]
19391934
1940-
jit_compile : typing.Optional[bool]
1941-
19421935
use_ideal_component_models : typing.Optional[bool]
19431936
19441937
request_options : typing.Optional[RequestOptions]
@@ -1979,7 +1972,6 @@ async def main() -> None:
19791972
object_=netlist, annotation=Netlist, direction="write"
19801973
),
19811974
"port_pairs": port_pairs,
1982-
"jit_compile": jit_compile,
19831975
"settings": convert_and_respect_annotation_metadata(
19841976
object_=settings, annotation=Settings, direction="write"
19851977
),

0 commit comments

Comments
 (0)