Skip to content

Commit

Permalink
Merge branch 'main' into off-zenith-obs
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-murray authored Jan 6, 2025
2 parents 2ee81ac + 1621962 commit a97dbfa
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@v1.10.2
uses: pypa/gh-action-pypi-publish@v1.12.3
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
uses: actions/checkout@v4

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v5.0.0
uses: crazy-max/ghaction-github-labeler@v5.1.0
with:
skip-delete: false
2 changes: 1 addition & 1 deletion .github/workflows/run-docs-code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fetch-depth: 1

- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3.0.4
uses: conda-incubator/setup-miniconda@v3.1.0
with:
auto-update-conda: true
channels: conda-forge,defaults
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-with-warnings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fetch-depth: 1

- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3.0.4
uses: conda-incubator/setup-miniconda@v3.1.0
with:
auto-update-conda: true
channels: conda-forge,defaults
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testsuite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fetch-depth: 1

- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3.0.4
uses: conda-incubator/setup-miniconda@v3.1.0
with:
auto-update-conda: true
channels: conda-forge,defaults
Expand All @@ -45,7 +45,7 @@ jobs:
run: |
python -m pytest --cov=py21cmsense --cov-config=.coveragerc --cov-report xml:./coverage.xml
- uses: codecov/codecov-action@v4
- uses: codecov/codecov-action@v5
if: success()
with:
file: ./coverage.xml #optional
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repos:

- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.7.1
rev: v0.8.4
hooks:
# Run the linter.
- id: ruff
Expand Down
8 changes: 4 additions & 4 deletions src/py21cmsense/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
del version, PackageNotFoundError

__all__ = [
"data",
"theory",
"yaml",
"hera",
"BaselineRange",
"GaussianBeam",
"Observation",
"Observatory",
"PowerSpectrum",
"data",
"hera",
"theory",
"yaml",
]
from . import data, theory, yaml
from .antpos import hera
Expand Down

0 comments on commit a97dbfa

Please sign in to comment.