Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into laser_test
Browse files Browse the repository at this point in the history
  • Loading branch information
nzywucka committed Mar 15, 2024
2 parents 4625c5d + 3810a4b commit 102aa85
Show file tree
Hide file tree
Showing 8 changed files with 379 additions and 138 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Maintain dependencies for GitHub Actions
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
ctapipe-version: ["v0.19.2",]
python-version: ["3.9", "3.10", "3.11"]
ctapipe-version: ["v0.19.2"]

defaults:
run:
Expand Down Expand Up @@ -68,4 +68,4 @@ jobs:
run: |
pytest --cov=ctapipe_io_magic --cov-report=xml
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
14 changes: 5 additions & 9 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

# make sure we have version info
- run: git fetch --tags

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.9"

- name: Install dependencies
run: |
python --version
pip install -U pip setuptools wheel setuptools_scm[toml]
python setup.py sdist bdist_wheel
pip install -U build
python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
- uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit 102aa85

Please sign in to comment.