Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 0.9.1.dev0 #1099

Merged
merged 5 commits into from
Aug 3, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions requirements/requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ansys-dpf-gate==0.4.1.dev0
ansys-dpf-gatebin==0.4.1.dev0
ansys-grpc-dpf==0.8.1.dev0
ansys-dpf-gate==0.4.2.dev0
ansys-dpf-gatebin==0.4.2.dev0
ansys-grpc-dpf==0.8.2.dev0
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",
}
Loading