Hatch plugin for conda environments
Project description
hatch-conda
CI/CD | |
Package | |
Meta |
This provides a plugin for Hatch that allows the use of conda environments.
This project is a copied and modified version of the hatch-containers plugin by Ofek Lev.
Table of Contents
Installation
pip install hatch-conda
Configuration
The environment plugin name is conda
.
-
pyproject.toml
[tool.hatch.envs.<ENV_NAME>] type = "conda"
-
hatch.toml
[envs.<ENV_NAME>] type = "conda"
Python
If the Python version is set to a multi-character integer like 310
then it will be interpreted as its <MAJOR>.<MINOR>
form e.g. 3.10
.
If not set, then the <MAJOR>.<MINOR>
version of the first python
found along your PATH
will be used, defaulting to the Python executable Hatch is running on.
Command
The command
option specifies the command that will be used to setup the environment. The possible options are conda
, mamba
and micromamba
.
Default:
[envs.<ENV_NAME>]
command = "conda"
Conda-forge
Indicates if the conda-forge index should be used.
Default:
[envs.<ENV_NAME>]
conda-forge = true
Environment file
By default packages will be installed using pip. However, to install packages using conda, conda-forge, or any other channel, you can specify a conda environment file:
[envs.<ENV_NAME>]
environment-file = "environment.yml"
When using an environment file, the channel and python version specified in the environment file will be used. After installing the environment, any extra packages specified in the dependencies will be installed, as well as the local package.
Prefix environments
It's possible to identify environment py prefix (the path in the filesytem) rather than by name.
[envs.<ENV_NAME>]
prefix = .venv/
Will create a conda environment in the .venv/
folder. This is useful because a text editor might check for this location to use the virtual environment.
Notes
- There must be a
conda
,mamba
, ormicromamba
executable along yourPATH
. - The
env-exclude
environment variable filter has no effect.
License
hatch-conda
is distributed under the terms of the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for hatch_conda-0.5.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 763e3900d469fdc9af580400aca20a1b9edfa85ba1eb356035392ad87338bf72 |
|
MD5 | 128c4106714cf3ca66af88f6d00436f6 |
|
BLAKE2b-256 | a092f788d908543faad645c794cc080b221f8c90139b96611ab72911918e29c8 |