We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00caeba commit 615050bCopy full SHA for 615050b
Makefile
@@ -16,7 +16,7 @@ install-post:
16
@pip install -r requirements_build.txt
17
@python setup.py sdist
18
@python setup.py bdist_wheel
19
- @pip install dist/ansys_fluent_solver-0.2.dev0-py3-none-any.whl[post]
+ @find dist -name "*.whl" -exec pip install {}[post] \;
20
21
install-pyvistaqt-requirements:
22
@sudo apt update
ansys/fluent/core/_version.py
@@ -6,7 +6,7 @@
6
"""
7
8
# major, minor, patch
9
-version_info = 0, 2, "dev0"
+version_info = 0, 3, "dev0"
10
11
# Nice string for the version
12
__version__ = ".".join(map(str, version_info))
0 commit comments