-
-
Notifications
You must be signed in to change notification settings - Fork 409
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove lock file creation from pre release workflow (#2432)
* Install latest version of mamba * Unpin conda lock installatiion * Split lockfilee creation to separate workflow * change docs installation- put a warning for conda forge installation and comment out install from package * fix * delete create lockfiles * download llock file
- Loading branch information
1 parent
d32f323
commit 4b7d92f
Showing
2 changed files
with
22 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,16 @@ this method by following the steps described below. | |
|
||
3. a. Non-developers can install the latest release from ``conda-forge`` with the ``--no-deps`` flag, | ||
|
||
.. warning:: | ||
|
||
Currently the conda forge installation doesn't work. It's recommended to install from the specific releases using pip- | ||
|
||
`$ pip install git+https://github.com/tardis-sn/tardis.git@{tag}` | ||
|
||
For example- | ||
|
||
`pip install git+https://github.com/tardis-sn/[email protected]` | ||
|
||
:: | ||
|
||
$ conda install tardis-sn --channel conda-forge --no-deps | ||
|
@@ -82,16 +92,16 @@ You have successfully installed TARDIS! 🎉 Please refer to `Quickstart for TAR | |
to start running simulations. | ||
|
||
|
||
Install from package | ||
==================== | ||
.. Install from package | ||
.. ==================== | ||
It's also possible to install TARDIS by pulling the `conda-forge package <https://anaconda.org/conda-forge/tardis-sn>`_ | ||
into a clean environment. However, we still encourage using lockfiles to ensure | ||
reproducibility of scientific results. | ||
.. It's also possible to install TARDIS by pulling the `conda-forge package <https://anaconda.org/conda-forge/tardis-sn>`_ | ||
.. into a clean environment. However, we still encourage using lockfiles to ensure | ||
.. reproducibility of scientific results. | ||
:: | ||
.. :: | ||
|
||
$ conda create --name tardis-forge tardis-sn --channel conda-forge | ||
.. $ conda create --name tardis-forge tardis-sn --channel conda-forge | ||
Environment update | ||
|