Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
PProfizi authored Nov 6, 2023
1 parent af3dbb1 commit 14a708e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ requires = ["setuptools>=61.0.0"]
[project]
# Check https://setuptools.pypa.io/en/stable/userguide/quickstart.html for all available sections
name = "ansys-dpf-core"
version = "0.11.0.dev0"
version = "0.10.1.dev0"
description = "Data Processing Framework - Python Core "
readme = "README.md"
requires-python = ">=3.8, <4"
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/dpf/core/_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Version for ansys-dpf-core"""
# major, minor, patch
version_info = 0, 11, 0, "dev0"
version_info = 0, 10, 1, "dev0"

# Nice string for the version
__version__ = ".".join(map(str, version_info))
Expand Down
4 changes: 2 additions & 2 deletions src/ansys/dpf/gate/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Version for ansys-dpf-gate"""
# major, minor, patch
version_info = 0, 5, "0.dev0"
__ansys_version__ = "242"
version_info = 0, 4, "2.dev0"
__ansys_version__ = "241"

# Nice string for the version
__version__ = ".".join(map(str, version_info))
2 changes: 1 addition & 1 deletion src/ansys/dpf/gatebin/_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Version for ansys-dpf-gatebin"""
# major, minor, patch
version_info = 0, 5, "0.dev0"
version_info = 0, 4, "2.dev0"

# Nice string for the version
__version__ = ".".join(map(str, version_info))
2 changes: 1 addition & 1 deletion src/ansys/grpc/dpf/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""ansys-grpc-dpf python protocol version"""
__version__ = '0.9.0dev0' # major.minor.patch
__version__ = '0.8.2dev0' # major.minor.patch

0 comments on commit 14a708e

Please sign in to comment.