Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install flake8 pytest 'sxs==2025.0.9' romspline pycbc requests bs4
pip install -r requirements.txt
pip install flake8 pytest
pip install -e .
- name: Apply pycbc numpy 2.x compatibility patch
run: |
python scripts/patch_pycbc_numpy2.py
#- name: Lint with flake8
# run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
3 changes: 0 additions & 3 deletions PyART/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
#!/usr/bin/env python
from __future__ import absolute_import

__import__("pkg_resources").declare_namespace(__name__)

from . import analysis
from . import analytic
Expand Down
2 changes: 0 additions & 2 deletions PyART/analysis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from __future__ import absolute_import

__import__("pkg_resources").declare_namespace(__name__)
2 changes: 0 additions & 2 deletions PyART/analytic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from __future__ import absolute_import

__import__("pkg_resources").declare_namespace(__name__)
Loading
Loading