File tree Expand file tree Collapse file tree 3 files changed +31
-30
lines changed Expand file tree Collapse file tree 3 files changed +31
-30
lines changed Original file line number Diff line number Diff line change 1
1
# How to contribute
2
2
3
- ## Preparing the development setup
4
-
5
- 1 . Install Python 3.9
6
-
7
- ``` bash
8
- sudo add-apt-repository ppa:deadsnakes/ppa
9
- sudo apt update
10
- sudo apt install python3.9 python3.9-venv
11
- ```
12
-
13
- 2 . Clone the repo, create and activate a new virtual environment
14
-
15
- ``` bash
16
- cd judge0-python
17
- python3.9 -m venv venv
18
- source venv/bin/activate
19
- ```
20
-
21
- 3 . Install the library and development dependencies
22
-
23
- ``` bash
24
- pip install -e .[test]
25
- pre-commit install
26
- ```
3
+ See [ docs] ( https://judge0.github.io/judge0-python/contributing.html ) .
Original file line number Diff line number Diff line change
1
+ Contributing
2
+ ============
3
+
4
+ Preparing the development setup
5
+ -------------------------------
6
+
7
+ 1. Install Python 3.9
8
+
9
+ .. code-block :: console
10
+
11
+ $ sudo add-apt-repository ppa:deadsnakes/ppa
12
+ $ sudo apt update
13
+ $ sudo apt install python3.9 python3.9-venv
14
+
15
+ 2. Clone the repo, create and activate a new virtual environment
16
+
17
+ .. code-block :: console
18
+
19
+ $ cd judge0-python
20
+ $ python3.9 -m venv venv
21
+ $ . venv/bin/activate
22
+
23
+ 3. Install the library and development dependencies
24
+
25
+ .. code-block :: console
26
+
27
+ $ pip install -e .[test]
28
+ $ pre-commit install
Original file line number Diff line number Diff line change 1
- .. Judge0 Python SDK documentation master file, created by
2
- sphinx-quickstart on Thu Dec 12 19:59:23 2024.
3
- You can adapt this file completely to your liking, but it should at least
4
- contain the root `toctree` directive.
5
-
6
1
Judge0 Python SDK documentation
7
2
===============================
8
3
9
4
.. toctree ::
10
5
:maxdepth: 2
11
6
:caption: Contents
12
7
13
- api_index
8
+ api_index
9
+ contributing
You can’t perform that action at this time.
0 commit comments