Skip to content

Commit

Permalink
MAINT: Remove tests and doc dependencies from project.toml (#81)
Browse files Browse the repository at this point in the history
Co-authored-by: Lucas Boucinha <[email protected]>
  • Loading branch information
lboucin and Lucas Boucinha committed Feb 23, 2023
1 parent 0aa6d17 commit 42dc787
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 24 deletions.
23 changes: 0 additions & 23 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,29 +29,6 @@ numpy = ">=1.14"
pandas = ">=1.3.2"
pywin32 = {version = ">=304", markers = "platform_system == 'Windows'"}

[tool.poetry.group.test.dependencies]
numpy = "1.23.4"
pandas = "1.5.1"
pytest = "7.1.2"
pytest-cov = "^4.0.0"

[tool.poetry.group.doc.dependencies]
matplotlib = "^3.6.0"
fluent = "^0.10.0"
ansys-fluent-core = "^0.11.0"
pyvista = "^0.36.1"
ansys-mapdl-core = "^0.63.3"
Sphinx = ">=4.4"
Sphinx-copybutton = ">=0.4"
numpydoc = ">=1.2"
ansys_sphinx_theme = ">=0.2"
sphinx_gallery = ">=0.11.1"
jupyter_sphinx = ">=0.4.0"
sphinx-notfound-page = ">=0.8.3"
sphinx_autodoc_typehints = ">=1.19.5"
sphinxemoji = ">=0.2.0"
ansys-fluent-visualization = "^0.5.0"

[tool.black]
line-length = 120

Expand Down
2 changes: 1 addition & 1 deletion src/ansys/pytwin/evaluate/saved_state_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class SavedState:
PARAMETERS_KEY = "parameters"

def __init__(self):
self._id = f"{uuid.uuid4()}"[0:8]
self._id = f"{uuid.uuid4()}"[0:24].replace("-", "")
self.time = None
self.inputs = None
self.outputs = None
Expand Down

0 comments on commit 42dc787

Please sign in to comment.