Skip to content

Commit 239aaa9

Browse files
authored
version bump to 0.4.dev0 (#330)
1 parent 649c038 commit 239aaa9

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,16 @@ jobs:
227227
- name: Display package file list
228228
run: ls -R
229229

230+
- name: Upload to Private PyPi
231+
run: |
232+
pip install twine
233+
python -m twine upload --skip-existing ./**/*.whl
234+
python -m twine upload --skip-existing ./**/*.tar.gz
235+
env:
236+
TWINE_USERNAME: PAT
237+
TWINE_PASSWORD: ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }}
238+
TWINE_REPOSITORY_URL: https://pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/upload
239+
230240
- name: Release
231241
uses: softprops/action-gh-release@v1
232242
with:

src/ansys/fluent/core/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
# major, minor, patch
9-
version_info = 0, 3, "dev0"
9+
version_info = 0, 4, "dev0"
1010

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

0 commit comments

Comments
 (0)