Skip to content

Commit

Permalink
Automate PyPi Releases (#109)
Browse files Browse the repository at this point in the history
* github actions pypi upload on tag

* forgot name for workflow

* one line install

* automate version

* back to prod pypi
  • Loading branch information
aglove2189 committed Jul 22, 2022
1 parent e04d1a1 commit af93034
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Publish Python 🐍 distributions 📦 to PyPI

on:
push:
tags:
- '*'

jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install pypa/setuptools
run: >-
python -m
pip install wheel
- name: Extract tag name
id: tag
run: echo ::set-output name=TAG_NAME::$(echo $GITHUB_REF | cut -d / -f 3)
- name: Update version in setup.py
run: >-
sed -i "s/{{VERSION_PLACEHOLDER}}/${{ steps.tag.outputs.TAG_NAME }}/g" setup.py
- name: Build a binary wheel
run: >-
python setup.py sdist bdist_wheel
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='Boruta',
version='0.1.5',
version='{{VERSION_PLACEHOLDER}}',
description='Python Implementation of Boruta Feature Selection',
url='https://github.com/danielhomola/boruta_py',
download_url='https://github.com/danielhomola/boruta_py/tarball/0.1.5',
Expand All @@ -11,7 +11,7 @@
packages=['boruta'],
package_dir={'boruta': 'boruta'},
package_data={'boruta/examples/*csv': ['boruta/examples/*.csv']},
include_package_data = True,
include_package_data=True,
keywords=['feature selection', 'machine learning', 'random forest'],
install_requires=['numpy>=1.10.4',
'scikit-learn>=0.17.1',
Expand Down

0 comments on commit af93034

Please sign in to comment.