Skip to content

Commit f9cf959

Browse files
post-release: update to v2.10.0rc3
1 parent 6f783bd commit f9cf959

11 files changed

+30
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11+
### Added
12+
- Added support for `tidy3d-extras`, an optional plugin that enables more accurate local mode solving via subpixel averaging.
13+
1114
### Changed
1215
- Improved performance of antenna metrics calculation by utilizing cached wave amplitude calculations instead of recomputing wave amplitudes for each port excitation in the `TerminalComponentModelerData`.
1316

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ Contents
255255
api/index
256256
GUI <https://tidy3d.simulation.cloud/>
257257
Photonforge <https://docs.flexcompute.com/projects/photonforge/en/latest/>
258+
extras/index
258259
development/index
259260
changelog
260261
About our Solver <https://www.flexcompute.com/tidy3d/solver/>

docs/install.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,23 @@ Multiple dependency groups can be installed simultaneously:
218218
219219
pip install "tidy3d[design,trimesh]"
220220
221+
Extras Plugin
222+
----------------------
223+
224+
An optional plugin providing additional local functionality,
225+
including a more accurate local mode solver:
226+
227+
.. code-block:: bash
228+
229+
pip install "tidy3d[extras]"
230+
231+
An API key is needed to use the extras plugin.
232+
For more information on the extras plugin, see `Extras Plugin <./extras/index.html>`_.
233+
234+
.. important::
235+
236+
``tidy3d-extras`` is **not compatible with Conda environments**.
237+
Please use a standard Python virtual environment (e.g., ``venv`` or ``virtualenv``) for installation.
221238

222239
Developer Installation
223240
----------------------

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tidy3d"
3-
version = "2.10.0rc2"
3+
version = "2.10.0rc3"
44
description = "A fast FDTD solver"
55
authors = ["Tyler Hughes <tyler@flexcompute.com>"]
66
license = "LGPLv2+"
@@ -116,7 +116,7 @@ sphinxemoji = { version = "*", optional = true }
116116
devsim = { version = "*", optional = true }
117117
cma = { version = "*", optional = true }
118118
openpyxl = { version = "*", optional = true }
119-
# tidy3d-extras = { version = "2.10.0rc2", optional = true }
119+
# tidy3d-extras = { version = "2.10.0rc3", optional = true }
120120

121121
[tool.poetry.extras]
122122
dev = [

schemas/EMESimulation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12013,7 +12013,7 @@
1201312013
"type": "string"
1201412014
},
1201512015
"version": {
12016-
"default": "2.10.0rc2",
12016+
"default": "2.10.0rc3",
1201712017
"type": "string"
1201812018
}
1201912019
},

schemas/HeatChargeSimulation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9904,7 +9904,7 @@
99049904
"type": "string"
99059905
},
99069906
"version": {
9907-
"default": "2.10.0rc2",
9907+
"default": "2.10.0rc3",
99089908
"type": "string"
99099909
}
99109910
},

schemas/HeatSimulation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9904,7 +9904,7 @@
99049904
"type": "string"
99059905
},
99069906
"version": {
9907-
"default": "2.10.0rc2",
9907+
"default": "2.10.0rc3",
99089908
"type": "string"
99099909
}
99109910
},

schemas/ModeSimulation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11767,7 +11767,7 @@
1176711767
"type": "string"
1176811768
},
1176911769
"version": {
11770-
"default": "2.10.0rc2",
11770+
"default": "2.10.0rc3",
1177111771
"type": "string"
1177211772
}
1177311773
},

schemas/Simulation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15999,7 +15999,7 @@
1599915999
"type": "string"
1600016000
},
1600116001
"version": {
16002-
"default": "2.10.0rc2",
16002+
"default": "2.10.0rc3",
1600316003
"type": "string"
1600416004
}
1600516005
},

schemas/TerminalComponentModeler.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14700,7 +14700,7 @@
1470014700
"type": "string"
1470114701
},
1470214702
"version": {
14703-
"default": "2.10.0rc2",
14703+
"default": "2.10.0rc3",
1470414704
"type": "string"
1470514705
}
1470614706
},

0 commit comments

Comments
 (0)