-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into get_skycell_improvement
- Loading branch information
Showing
6 changed files
with
70 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: build | ||
|
||
on: | ||
release: | ||
types: [ released ] | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@v1 | ||
with: | ||
upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }} | ||
targets: | | ||
# Linux wheels | ||
- cp3*-manylinux_x86_64 | ||
# MacOS wheels | ||
- cp3*-macosx_x86_64 | ||
# Until we have arm64 runners, we can't automatically test arm64 wheels | ||
# - cp3*-macosx_arm64 | ||
sdist: true | ||
secrets: | ||
pypi_token: ${{ secrets.PYPI_PASSWORD_STSCI_MAINTAINER }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,47 @@ | ||
Installation | ||
------------ | ||
|
||
*Coming soon!* | ||
Conda (Recommended) | ||
=================== | ||
|
||
``Drizzlepac`` is installed when you install the ``stenv`` conda environment (a replacement for ``astroconda``). Select your desired release and follow the instructions on the `installation page <https://stenv.readthedocs.io/en/latest/getting_started.html>`_. | ||
|
||
|
||
From Source | ||
=========== | ||
|
||
Clone this repository | ||
********************* | ||
.. code-block:: shell | ||
git clone https://github.com/spacetelescope/drizzlepac | ||
cd drizzlepac | ||
Build the documentation | ||
======================= | ||
|
||
*Note:* If you intend to use ``drizzlepac``'s embedded help feature from within | ||
an interactive ``python`` or ``ipython`` session, we recommend you do not skip | ||
this step. | ||
|
||
|
||
.. code-block:: shell | ||
cd doc/ | ||
make html | ||
Install drizzlepac | ||
================== | ||
|
||
.. code-block:: shell | ||
pip install . | ||
The option ``--no-use-pep517`` MAY be required in order to correctly build | ||
the C extensions with ``pip`` versions up to 22.2, after commenting out | ||
the ``build-backend`` from the ``pyproject.toml`` config file. | ||
|
||
**Support for installing using `pip` is still evolving, so use of this | ||
command is provided on an experimental basis for now.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters