Skip to content

Commit

Permalink
attempt to build a release for pypi (#363)
Browse files Browse the repository at this point in the history
* attempt to build a release for pypi

* untab
  • Loading branch information
eacharles authored May 4, 2023
1 parent a015dce commit 9aba738
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
pip install .[all]
pip install flake8 pytest pytest-cov mockmpi pytest-timeout
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f dsps_reqs.txt ]; then pip install -r dsps_reqs.txt; fi
- name: Test with pytest
run: |
python -m pytest -m "not slow" --cov=./rail --cov-report=xml
Expand Down
3 changes: 3 additions & 0 deletions dsps_reqs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
diffstar@git+https://github.com/ArgonneCPAC/[email protected]
diffmah@git+https://github.com/ArgonneCPAC/[email protected]
dsps@git+https://github.com/ArgonneCPAC/[email protected]
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ dependencies = [
"dustmaps",
"pathos",
"somoclu",
"diffstar@git+https://github.com/ArgonneCPAC/[email protected]",
"diffmah@git+https://github.com/ArgonneCPAC/[email protected]",
"dsps@git+https://github.com/ArgonneCPAC/[email protected]",
"deprecated",
]

Expand Down
4 changes: 4 additions & 0 deletions src/rail/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ def find_version():
__version__ = find_version()
except ImportError: # pragma: no cover
__version__ = "unknown"

from .stage import RailPipeline, RailStage
from .utilPhotometry import PhotormetryManipulator, HyperbolicSmoothing, HyperbolicMagnitudes
from .utilStages import ColumnMapper, RowSelector, LSSTFluxToMagConverter, TableConverter, Dereddener

0 comments on commit 9aba738

Please sign in to comment.