|
1 | 1 | [tool.poetry]
|
2 | 2 | name = "tidy3d"
|
3 |
| -version = "2.8.4" |
| 3 | +version = "2.9.0rc1" |
4 | 4 | description = "A fast FDTD solver"
|
5 | 5 | authors = [ "Tyler Hughes <[email protected]>"]
|
6 | 6 | license = "LGPLv2+"
|
@@ -51,7 +51,6 @@ joblib = "*"
|
51 | 51 |
|
52 | 52 | ### Optional dependencies ###
|
53 | 53 | # development core
|
54 |
| -bump-my-version = { version = "*", optional = true } |
55 | 54 | ruff = { version = "0.11.11", optional = true }
|
56 | 55 | coverage = { version = "*", optional = true }
|
57 | 56 | dill = { version = "*", optional = true }
|
@@ -127,7 +126,6 @@ cma = { version = "*", optional = true }
|
127 | 126 | [tool.poetry.extras]
|
128 | 127 | dev = [
|
129 | 128 | 'bayesian-optimization',
|
130 |
| - 'bump-my-version', |
131 | 129 | "coverage",
|
132 | 130 | 'dill',
|
133 | 131 | 'divparams',
|
@@ -311,42 +309,3 @@ norecursedirs = [
|
311 | 309 | filterwarnings = "ignore::DeprecationWarning"
|
312 | 310 | testpaths = ["tidy3d", "tests", "docs"]
|
313 | 311 | python_files = "*.py"
|
314 |
| - |
315 |
| -[tool.bumpversion] |
316 |
| -current_version = "2.8.4" |
317 |
| -parse = """(?x) |
318 |
| - (?P<major>0|[1-9]\\d*)\\. |
319 |
| - (?P<minor>0|[1-9]\\d*)\\. |
320 |
| - (?P<patch>0|[1-9]\\d*) |
321 |
| - (?: |
322 |
| - (?P<pre_l>[a-zA-Z-]+) # pre-release label |
323 |
| - (?P<pre_n>0|[1-9]\\d*) # pre-release version number |
324 |
| - )? # pre-release section is optional |
325 |
| -""" |
326 |
| -serialize = ["{major}.{minor}.{patch}{pre_l}{pre_n}", "{major}.{minor}.{patch}"] |
327 |
| -search = "{current_version}" |
328 |
| -replace = "{new_version}" |
329 |
| -regex = false |
330 |
| -ignore_missing_version = true |
331 |
| -ignore_missing_files = false |
332 |
| -tag = false |
333 |
| -sign_tags = false |
334 |
| -tag_name = "v{new_version}" |
335 |
| -tag_message = "Bump version: {current_version} → {new_version}" |
336 |
| -allow_dirty = false |
337 |
| -commit = false |
338 |
| -message = "Bump version: {current_version} → {new_version}" |
339 |
| -commit_args = "" |
340 |
| - |
341 |
| -[tool.bumpversion.parts.pre_l] |
342 |
| -values = ["rc", ""] |
343 |
| - |
344 |
| -[[tool.bumpversion.files]] |
345 |
| -filename = "pyproject.toml" |
346 |
| -search = "\nversion = \"{current_version}\"" |
347 |
| -replace = "\nversion = \"{new_version}\"" |
348 |
| - |
349 |
| -[[tool.bumpversion.files]] |
350 |
| -filename = "tidy3d/version.py" |
351 |
| -search = "{current_version}" |
352 |
| -replace = "{new_version}" |
0 commit comments