diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 00000000..25153f10 --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,28 @@ +# This workflow uploads PyLops on PyPI using Twine when a release is created +# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries +name: PyLops-deploy + +on: + release: + types: [published] + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.x' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install build + - name: Build package + run: python -m build + - name: Publish package + uses: pypa/gh-action-pypi-publish@release/v1 + with: + user: __token__ + password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 54ad73bc..303acf79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,36 @@ +# 1.17.0 +* Added `pylops.utils.describe.describe` method +* Added `fftengine` to `pylops.waveeqprocessing.Marchenko` +* Added `ifftshift_before` and `fftshift_after` optional input parameters in + `pylops.signalprocessing.FFT` +* Added `norm` optional input parameter to `pylops.signalprocessing.FFT2D` and + `pylops.signalprocessing.FFTND` +* Added `scipy` backend to `pylops.signalprocessing.FFT` and + `pylops.signalprocessing.FFT2D` and `pylops.signalprocessing.FFTND` +* Added `eps` optional input parameter in + `pylops.utils.signalprocessing.slope_estimate` +* Added pre-commit hooks +* Improved pre-commit hooks +* Vectorized `pylops.utils.signalprocessing.slope_estimate` +* Handlexd `nfft