-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add contribution guide and first issue badge (#424)
* Add contribution guide and add first issue badge * Add contribution guide to README * Remove Dev Guide from README * Fix code block indentation * Delete contributions.code-workspace * Fix code block indent * remove slow timing comparsion * Switch to code block bash --------- Co-authored-by: Doug Branton <[email protected]>
- Loading branch information
Showing
4 changed files
with
26 additions
and
15 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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Contribution Guide | ||
================== | ||
|
||
Dev Guide - Getting Started | ||
--------------------------- | ||
|
||
Download code and install dependencies in a conda environment. Run unit tests at the end as a verification that the packages are properly installed. | ||
|
||
.. code-block:: bash | ||
conda create -n seriesenv python=3.11 | ||
conda activate seriesenv | ||
git clone https://github.com/lincc-frameworks/tape | ||
cd tape/ | ||
pip install . | ||
pip install .[dev] # it may be necessary to use `pip install .'[dev]'` (with single quotes) depending on your machine. | ||
pip install pytest | ||
pytest |
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