Skip to content

Commit

Permalink
Merge pull request #7 from WFP-VAM/dev
Browse files Browse the repository at this point in the history
update github actions
  • Loading branch information
valpesendorfer authored Aug 30, 2023
2 parents afe01f0 + 25443f8 commit 33d7050
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
os: [ubuntu-22.04, windows-2022]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v3

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==1.10.0
Expand All @@ -23,8 +23,8 @@ jobs:
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BEFORE_BUILD: "pip install cython numpy"
CIBW_BUILD: "{cp,pp}3*-*"
CIBW_SKIP: "cp35-* *-manylinux_i686"
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-*"
CIBW_SKIP: "pp* *-win32 *-manylinux_i686"

- uses: actions/upload-artifact@v3
with:
Expand All @@ -34,9 +34,9 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-python@v2
- uses: actions/setup-python@v3
name: Install Python
with:
python-version: '3.8'
Expand All @@ -61,9 +61,6 @@ jobs:
name: artifact
path: dist

- uses: pypa/gh-action-pypi-publish@master
- uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository-url: https://test.pypi.org/legacy/
#user: __token__
#password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ vam.whittaker
|CI| |version| |downloads| |license|

.. |CI| image:: https://github.com/WFP-VAM/vam.whittaker/actions/workflows/ci.yml/badge.svg
:target: https://github.com/vam.whittaker/modape/actions/
:target: https://github.com/WFP-VAM/vam.whittaker/actions/workflows/ci.yml

.. |version| image:: https://img.shields.io/pypi/v/vam.whittaker.svg
:target: https://pypi.org/project/vam.whittaker/
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ author = WFP-VAM
author_email =
maintainer = WFP-VAM
maintainer_email =
long_description_content_type = text/rst
long_description = file: README.rst
long_description = State-of-the art whittaker smoother, implemented as fast C-extension through Cython and including a V-curve optimization of the smoothing parameter.\n\nFor more information, please visit: http://github.com/WFP-VAM/vam.whittaker
long_description_content_type=text/markdown
platforms = any
license = MIT License
url = http://github.com/WFP-VAM/vam.whittaker/
Expand All @@ -17,7 +17,7 @@ project_urls =
classifiers =
License :: OSI Approved :: MIT License
Intended Audience :: Developers
Development Status :: 3 - Beta
Development Status :: 4 - Beta
Operating System :: OS Independent
Programming Language :: Python :: 3
Natural Language :: English
Expand Down

0 comments on commit 33d7050

Please sign in to comment.