Skip to content

Commit b316a7a

Browse files
Map to 2.10.0rc2
1 parent 86147a5 commit b316a7a

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tidy3d"
3-
version = "2.10.0rc1"
3+
version = "2.10.0rc2"
44
description = "A fast FDTD solver"
55
authors = ["Tyler Hughes <[email protected]>"]
66
license = "LGPLv2+"

tidy3d/plugins/smatrix/web/api/webapi.py

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -198,20 +198,21 @@ def run(
198198
group_id=batch_task.group_id
199199
)
200200
batch.run()
201-
postprocess(
202-
batch_id,
203-
solver_version=solver_version,
204-
worker_group=worker_group,
205-
pay_type=pay_type,
206-
priority=priority,
207-
) # TODO FIX
201+
# postprocess(
202+
# batch_id,
203+
# solver_version=solver_version,
204+
# worker_group=worker_group,
205+
# pay_type=pay_type,
206+
# priority=priority,
207+
# ) # TODO FIX
208208

209209
from ..core.http_util import http
210210
resp = http.post(
211-
f"tidy3d/projects/{batch.batch_id}/postprocess",
211+
f"tidy3d/projects/{batch_task.batch_id}/postprocess",
212212
{
213213
"batchType": "RF_SWEEP",
214-
"solverVersion": "dario-rf-0.0.0"
214+
"solverVersion": "dario-rf-0.0.0",
215+
"protocolVersion": "2.8.4"
215216
},
216217
)
217218
print(resp)

tidy3d/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import annotations
22

3-
__version__ = "2.9.0"
3+
__version__ = "2.10.0rc2"

0 commit comments

Comments
 (0)