From 1cbb5787f230dd7092f257ce0e71a8c7235df90f Mon Sep 17 00:00:00 2001 From: valpesendorfer Date: Wed, 30 Aug 2023 16:18:35 +0200 Subject: [PATCH 1/3] fix setup.cfg --- setup.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 043f12a..81e560d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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/ @@ -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 From dafb067fa447c318ab0171fcd1e2d6eceb35df2f Mon Sep 17 00:00:00 2001 From: valpesendorfer Date: Wed, 30 Aug 2023 16:18:41 +0200 Subject: [PATCH 2/3] fix status badge --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index d933943..18cffca 100644 --- a/README.rst +++ b/README.rst @@ -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/ From 25443f85e55bc2b1a624f7d8de61928c39d408d2 Mon Sep 17 00:00:00 2001 From: valpesendorfer Date: Wed, 30 Aug 2023 16:18:46 +0200 Subject: [PATCH 3/3] update workflows --- .github/workflows/wheels.yml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index ffee56a..a469310 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -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 @@ -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: @@ -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' @@ -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 }} \ No newline at end of file