File tree Expand file tree Collapse file tree 2 files changed +16
-7
lines changed Expand file tree Collapse file tree 2 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 6
6
name : lint
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@master
10
- - uses : actions/setup-python@v2
9
+ - uses : actions/checkout@v3
10
+ - uses : actions/setup-python@v3
11
11
with :
12
12
python-version : 3.8
13
- - uses : pre-commit/action@v2 .0.0
13
+ - uses : pre-commit/action@v3 .0.0
14
14
pytest :
15
15
name : pytest
16
16
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
1
# Contributing Guide
2
2
3
3
You will need:
4
- - Python 3.6 or higher
4
+ - Python 3.7 or higher
5
5
6
6
## Getting started
7
7
8
- To get your development environment set up, run:
8
+ To get your development environment set up, create and activate a virtual
9
+ environment, and install poetry:
10
+
11
+ ```
12
+ pipx install poetry
13
+ # or with conda
14
+ conda install poetry
15
+ ```
16
+
17
+ Then install dependencies with poetry:
9
18
10
19
``` sh
11
- pip install -e .[dev]
20
+ poetry install
12
21
```
13
22
14
- in an activated virtual environment. This will install the repo version of
23
+ This will install the repo version of
15
24
` graphene-pydantic ` and then install the development dependencies. Once that
16
25
has completed, you can start developing.
17
26
You can’t perform that action at this time.
0 commit comments