1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# Contributing
We follow the [IPython Contributing Guide](https://github.com/ipython/ipython/blob/master/CONTRIBUTING.md).
## To set up a development environment
Fork the repository and clone the forked repository locally.
Use Conda to install dependencies and activate the development environment.
```
conda create -n qtdev python=3
conda activate qtdev
conda env update --file requirements/environment.yml
```
To run after the changes have been made to source (preferred):
```
pip install -e .
```
**or,** for running immediate changes:
```
python setup.py develop
```
Finally, to run the tests:
```
pytest
```
|