Skip to content

Commit

Permalink
Merge pull request #154 from ag2ai/package-test
Browse files Browse the repository at this point in the history
Package test and version bump
  • Loading branch information
qingyun-wu authored Dec 6, 2024
2 parents af7d69e + 7f1da8b commit d3f986f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,21 @@ jobs:
# - name: Conda list
# shell: pwsh
# run: conda list
- name: Build autogen
- name: Build pyautogen
shell: pwsh
run: |
pip install twine
python setup_autogen.py sdist bdist_wheel
python setup.py sdist bdist_wheel
- name: Publish pyautogen to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYAUTOGEN_PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYAUTOGEN_PYPI_PASSWORD }}
shell: pwsh
run: twine upload dist/*pyautogen*
- name: Build autogen
shell: pwsh
run: |
pip install twine
python setup_autogen.py sdist bdist_wheel
- name: Publish autogen to PyPI
env:
TWINE_USERNAME: ${{ secrets.AUTOGEN_PYPI_USERNAME }}
Expand All @@ -71,7 +75,3 @@ jobs:
TWINE_PASSWORD: ${{ secrets.AUTOGEN_PYPI_PASSWORD }}
shell: pwsh
run: twine upload dist/ag2*
- name: Build pyautogen
shell: pwsh
run: |
python setup.py sdist bdist_wheel
2 changes: 1 addition & 1 deletion autogen/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
#
# Portions derived from https://github.com/microsoft/autogen are under the MIT License.
# SPDX-License-Identifier: MIT
__version__ = "0.4.2b2"
__version__ = "0.5.0b1"

0 comments on commit d3f986f

Please sign in to comment.