Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
[project]
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
name = "ansys-dpf-core"
version = "0.8.2.dev0"
version = "0.9.1.dev0"
description = "Data Processing Framework - Python Core "
readme = "README.md"
requires-python = ">=3.8, <4"
Expand Down
3 changes: 2 additions & 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, 8, 2, "dev0"
version_info = 0, 9, 1, "dev0"

# Nice string for the version
__version__ = ".".join(map(str, version_info))
Expand All @@ -26,4 +26,5 @@
"6.1": "2023R2",
"6.2": "2023R2",
"7.0": "2024R1",
"7.1": "2024R1",
}