Skip to content

Commit

Permalink
feat: upgrade setuptools and wheel dependencies
Browse files Browse the repository at this point in the history
Adds a step in the GitHub Actions workflow to install and upgrade pip, setuptools, wheel, and twine before building the package.

Bumps up the version of the AlleleFinder package from 0.3.8 to 0.3.9.
  • Loading branch information
adamkoziol committed May 6, 2024
1 parent eb37b5f commit d2eeb22
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build package
run: python setup.py sdist bdist_wheel
- name: Set environment variables
Expand Down
2 changes: 1 addition & 1 deletion allele_tools/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
AlleleFinder version
"""
__version__ = '0.3.8'
__version__ = '0.3.9'

0 comments on commit d2eeb22

Please sign in to comment.