Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: scikit-learn-contrib/boruta_py
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.4.1
Choose a base ref
...
head repository: scikit-learn-contrib/boruta_py
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 13, 2024

  1. Bump up gh-action-pypi-publish to v1.9.0 (#133)

    rodrigc authored Aug 13, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    6b1d193 View commit details
  2. Update setup.py

    danielhomola authored Aug 13, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    3c9eac3 View commit details
Showing with 5 additions and 3 deletions.
  1. +3 −3 .github/workflows/publish-to-pypi.yml
  2. +2 −0 setup.py
6 changes: 3 additions & 3 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
@@ -15,6 +15,8 @@ jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write # OIDC for PyPi Trusted Publisher feature
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
@@ -36,6 +38,4 @@ jobs:
- name: Build a binary wheel
run: python setup.py sdist bdist_wheel
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@v1.8.10
with:
password: ${{ secrets.PYPI_API_TOKEN }}
uses: pypa/gh-action-pypi-publish@v1.9.0
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -12,6 +12,8 @@
package_dir={'boruta': 'boruta'},
package_data={'boruta/examples/*csv': ['boruta/examples/*.csv']},
include_package_data=True,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords=['feature selection', 'machine learning', 'random forest'],
install_requires=['numpy>=1.10.4',
'scikit-learn>=0.17.1',