From 4b58eb9f5831a8c9ae25e4940da2b63a95777fc8 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Wed, 6 Nov 2024 11:15:01 -0500 Subject: [PATCH 1/3] MAINT: Add dependabot --- .github/dependabot.yml | 10 ++++++++++ .gitignore | 1 + 2 files changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d57929b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + groups: + actions: + patterns: + - "*" diff --git a/.gitignore b/.gitignore index 14627b9..d7e473f 100644 --- a/.gitignore +++ b/.gitignore @@ -129,3 +129,4 @@ dmypy.json .pyre/ junit-results.xml +.DS_Store From 3b69ab2c97f505914c5466b1cb9939a68ffb1439 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Wed, 6 Nov 2024 11:17:47 -0500 Subject: [PATCH 2/3] FIX: More --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cc01878..e820b4b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,14 +43,15 @@ jobs: pypi: needs: package runs-on: ubuntu-latest - if: github.event_name == 'release' steps: - uses: actions/download-artifact@v3 with: name: dist path: dist + - run: ls -lR dist - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 + if: github.event_name == 'release' with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} From ea8387ed2694caf64c6b6b072ac569644f19b0a1 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Wed, 6 Nov 2024 11:20:50 -0500 Subject: [PATCH 3/3] TST: Reenabled