Skip to content

Commit

Permalink
remove version from setup.py and add debugging
Browse files Browse the repository at this point in the history
Signed-off-by: James Busche <jbusche@us.ibm.com>
  • Loading branch information
jbusche committed Apr 9, 2024
1 parent aa93d7d commit 2cd7ba4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ jobs:
strategy:
matrix:
python-version:
- setup: "3.9"
tox: "py39"
- setup: "3.10"
tox: "py310"
# Commenting out older python versions for now
# - setup: "3.9"
# tox: "py39"
# - setup: "3.10"
# tox: "py310"
- setup: "3.11"
tox: "py311"

Expand All @@ -52,5 +53,6 @@ jobs:
- name: Build and check wheel package
run:
tox -e build,twinecheck
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
# Commenting out push to PyPI for now
# - name: Publish package distributions to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# Third Party
from setuptools import find_packages, setup

setup(name="fms-hf-tuning", version="0.0.1", packages=find_packages())
setup(name="fms-hf-tuning", packages=find_packages())

0 comments on commit 2cd7ba4

Please sign in to comment.