Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 590 Bytes

CONTRIBUTING.md

File metadata and controls

33 lines (22 loc) · 590 Bytes

Contributing

We follow the IPython Contributing Guide.

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 install pyqt

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