File: CONTRIBUTING.md

package info (click to toggle)
python-qtconsole 5.6.1-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,184 kB
  • sloc: python: 7,222; makefile: 180; sh: 36
file content (33 lines) | stat: -rw-r--r-- 624 bytes parent folder | download | duplicates (2)
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
```