pyobs-brot 2.0.0.dev15__tar.gz → 2.0.0.dev16__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. pyobs_brot-2.0.0.dev16/.github/workflows/dependabot-automerge.yml +24 -0
  2. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/PKG-INFO +1 -1
  3. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/pyproject.toml +1 -1
  4. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/uv.lock +1 -1
  5. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/.github/dependabot.yml +0 -0
  6. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/.github/workflows/pypi.yml +0 -0
  7. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/.github/workflows/pyrefly.yml +0 -0
  8. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/.github/workflows/pytest.yml +0 -0
  9. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/.github/workflows/ruff.yml +0 -0
  10. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/.gitignore +0 -0
  11. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/.pre-commit-config.yaml +0 -0
  12. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/.readthedocs.yml +0 -0
  13. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/LICENSE +0 -0
  14. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/README.md +0 -0
  15. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/docs/Makefile +0 -0
  16. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/docs/make.bat +0 -0
  17. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/docs/requirements.txt +0 -0
  18. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/docs/source/_static/pyobs.gif +0 -0
  19. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/docs/source/conf.py +0 -0
  20. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/docs/source/index.rst +0 -0
  21. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/pyobs_brot/__init__.py +0 -0
  22. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/pyobs_brot/brotdome.py +0 -0
  23. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/pyobs_brot/brotroof.py +0 -0
  24. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/pyobs_brot/brottelescope.py +0 -0
  25. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/specs/index.md +0 -0
  26. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/tests/test_brotroof.py +0 -0
  27. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/tests/test_brottelescope.py +0 -0
  28. {pyobs_brot-2.0.0.dev15 → pyobs_brot-2.0.0.dev16}/tests/test_import.py +0 -0
@@ -0,0 +1,24 @@
1
+ name: Dependabot auto-merge
2
+
3
+ on: pull_request
4
+
5
+ permissions:
6
+ contents: write
7
+ pull-requests: write
8
+
9
+ jobs:
10
+ dependabot:
11
+ runs-on: ubuntu-latest
12
+ if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
13
+ steps:
14
+ - name: Fetch Dependabot metadata
15
+ id: metadata
16
+ uses: dependabot/fetch-metadata@v2
17
+ with:
18
+ compat-lookup: true
19
+ - name: Enable auto-merge for patch and minor updates
20
+ if: ${{ steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor' }}
21
+ run: gh pr merge --auto --merge "$PR_URL"
22
+ env:
23
+ PR_URL: ${{ github.event.pull_request.html_url }}
24
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: pyobs-brot
3
- Version: 2.0.0.dev15
3
+ Version: 2.0.0.dev16
4
4
  Summary: pyobs module for BROTlib telescopes
5
5
  Author-email: Tim-Oliver Husser <thusser@uni-goettingen.de>, Lukas Melzig <lukas.melzig@stud.uni-goettingen.de>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyobs-brot"
3
- version = "2.0.0.dev15"
3
+ version = "2.0.0.dev16"
4
4
  description = "pyobs module for BROTlib telescopes"
5
5
  authors = [{ name = "Tim-Oliver Husser", email = "thusser@uni-goettingen.de" }, { name = "Lukas Melzig", email = "lukas.melzig@stud.uni-goettingen.de" }]
6
6
  requires-python = ">=3.11"
@@ -1935,7 +1935,7 @@ wheels = [
1935
1935
 
1936
1936
  [[package]]
1937
1937
  name = "pyobs-brot"
1938
- version = "2.0.0.dev15"
1938
+ version = "2.0.0.dev16"
1939
1939
  source = { editable = "." }
1940
1940
  dependencies = [
1941
1941
  { name = "astropy" },