Skip to content

Commit

Permalink
feat: Update workflows and setup
Browse files Browse the repository at this point in the history
  • Loading branch information
smoia committed Jul 15, 2024
1 parent 53ac6ef commit 7db50d9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
shell: bash
steps:
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# Fetch all history for all branches and tags
fetch-depth: 0
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:

steps:
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.6'
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -29,4 +29,5 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine check dist/*
twine upload dist/*
11 changes: 4 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,14 @@
description-file = README.rst
url = https://github.com/physiopy/peakdet
download_url = https://github.com/physiopy/peakdet
author = peakdet developers
maintainer = Ross Markello, Stefano Moia
author = Ross Markello, The Physiopy Community
maintainer = The Physiopy Community
maintainer_email = [email protected], [email protected]
classifiers =
Development Status :: 3 - Alpha
Development Status :: 3 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3
license = Apache-2.0
description = A Python toolbox for the identification and processing of peaks and troughs in physiological data
long_description = file:README.md
Expand Down

0 comments on commit 7db50d9

Please sign in to comment.