File tree Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " tidy3d"
3
- version = " 2.10.0rc1 "
3
+ version = " 2.10.0rc2 "
4
4
description = " A fast FDTD solver"
5
5
authors = [
" Tyler Hughes <[email protected] >" ]
6
6
license = " LGPLv2+"
Original file line number Diff line number Diff line change @@ -198,20 +198,21 @@ def run(
198
198
group_id = batch_task .group_id
199
199
)
200
200
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
208
208
209
209
from ..core .http_util import http
210
210
resp = http .post (
211
- f"tidy3d/projects/{ batch .batch_id } /postprocess" ,
211
+ f"tidy3d/projects/{ batch_task .batch_id } /postprocess" ,
212
212
{
213
213
"batchType" : "RF_SWEEP" ,
214
- "solverVersion" : "dario-rf-0.0.0"
214
+ "solverVersion" : "dario-rf-0.0.0" ,
215
+ "protocolVersion" : "2.8.4"
215
216
},
216
217
)
217
218
print (resp )
Original file line number Diff line number Diff line change 1
1
from __future__ import annotations
2
2
3
- __version__ = "2.9.0 "
3
+ __version__ = "2.10.0rc2 "
You can’t perform that action at this time.
0 commit comments