Skip to content

Commit

Permalink
Merge pull request #127 from ag2ai/package-udpate
Browse files Browse the repository at this point in the history
Package description udpate
  • Loading branch information
qingyun-wu authored Dec 2, 2024
2 parents 7839c3c + 7c0a55b commit 143cf01
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ jobs:
run: |
pip install twine
python setup_autogen.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: Publish autogen to PyPI
env:
TWINE_USERNAME: ${{ secrets.AUTOGEN_PYPI_USERNAME }}
Expand All @@ -69,9 +75,3 @@ jobs:
shell: pwsh
run: |
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*
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.2b1"
__version__ = "0.4.2b2"
2 changes: 2 additions & 0 deletions setup_ag2.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
name="ag2",
version=__version__,
description="Alias package for pyautogen",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["pyautogen==" + __version__],
url="https://github.com/ag2ai/ag2",
author="Chi Wang & Qingyun Wu",
Expand Down
2 changes: 2 additions & 0 deletions setup_autogen.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
name="autogen",
version=__version__,
description="Alias package for pyautogen",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["pyautogen==" + __version__],
url="https://github.com/ag2ai/ag2",
author="Chi Wang & Qingyun Wu",
Expand Down

0 comments on commit 143cf01

Please sign in to comment.