Skip to content

Commit

Permalink
Bump version 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mkundu1 committed Jul 5, 2022
1 parent d9e07fa commit 330223d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 3 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,15 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }}
TWINE_REPOSITORY_URL: https://pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/upload

- name: Upload to Public PyPi
run: |
pip install twine
twine upload --skip-existing ./**/*.whl
python -m twine upload --skip-existing ./**/*.tar.gz
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}

- name: Release
uses: softprops/action-gh-release@v1
with:
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ style:
install:
@pip uninstall ansys-api-fluent -y
@pip install -r requirements/requirements_build.txt
@pip install install_data/ansys_api_fluent-0.1.0-py3-none-any.whl
@python -m build
@pip install dist/*.whl

Expand Down
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ with:
git clone https://github.com/pyansys/pyfluent.git
cd pyfluent
pip install pip -U
pip install install_data/ansys_api_fluent-0.1.0-py3-none-any.whl # till public release
pip install -e .
python codegen/allapigen.py # Generates the API files, requires Fluent
Expand Down
Binary file removed install_data/ansys_api_fluent-0.1.0-py3-none-any.whl
Binary file not shown.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
shutil.copy2(_README_FILE, _DOCS_FILE)

install_requires = [
"ansys-api-fluent~=0.2",
"ansys-platform-instancemanagement~=1.0",
"grpcio>=1.30.0",
"numpy>=1.21.5",
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/fluent/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

# major, minor, patch
version_info = 0, 9, "dev0"
version_info = 0, 10, 0

# Nice string for the version
__version__ = ".".join(map(str, version_info))

0 comments on commit 330223d

Please sign in to comment.