-
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.
HLA-1145: New drizzlepac release candidate 3.6.2rc1 (#1685)
Co-authored-by: Nadia Dencheva <[email protected]> Co-authored-by: Steve Goldman <[email protected]> Co-authored-by: Zach Burnett <[email protected]> Co-authored-by: Zach Burnett <[email protected]>
- Loading branch information
1 parent
59c54bb
commit 438c4dd
Showing
42 changed files
with
337 additions
and
206 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,18 @@ | ||
<!-- If this PR closes a JIRA ticket, make sure the title starts with the JIRA issue number, | ||
for example HLA-1234: <Fix a bug> --> | ||
Resolves [HLA-nnnn](https://jira.stsci.edu/browse/HLA-nnnn) | ||
|
||
<!-- If this PR closes a GitHub issue, reference it here by its number --> | ||
Closes # | ||
|
||
<!-- describe the changes comprising this PR here --> | ||
This PR addresses ... | ||
|
||
**Checklist for maintainers** | ||
- [ ] added entry in `CHANGELOG.rst` within the relevant release section | ||
- [ ] updated or added relevant tests | ||
- [ ] updated relevant documentation | ||
- [ ] added relevant milestone | ||
- [ ] added relevant label(s) | ||
- [ ] ran regression tests, post a link to the Jenkins job below. | ||
[How to run regression tests on a PR](https://github.com/spacetelescope/jwst/wiki/Running-Regression-Tests-Against-PR-Branches) |
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
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
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
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
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
Oops, something went wrong.