You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,15 +8,14 @@ Before submitting your PR. You need to make sure it would pass some basic automa
8
8
```shell script
9
9
#!/bin/bash
10
10
# install poetry
11
-
python -m pip install poetry==1.1.15
11
+
python -m pip install poetry==2.2.0
12
12
python -m poetry update --lock
13
13
python -m poetry install -E dev
14
-
# run linting, linting will only be properly performed for python 3.7 but should also pass for python 3.8
15
-
sh scripts/lint.sh
14
+
poetry run sh scripts/lint.sh
16
15
# run testing
17
-
sh scripts/unittest.sh
16
+
poetry run sh scripts/unittest.sh
18
17
```
19
-
The tests should run and pass for python 3.7 and 3.8, across Windows, macOS and Linux. You should also add new tests for whatever issue or feature you fixed/added, and add it to `CHANGELOG.md`.
18
+
The tests should run and pass for python 3.8, 3.9, 3.10, 3.11, 3.12, 3.14, across Windows, macOS and Linux. You should also add new tests for whatever issue or feature you fixed/added, and add it to `CHANGELOG.md`.
20
19
21
20
# Submit your PR
22
21
Submit a PR with changes. Your code should be well documented and efficient. Your code must pass the unit tests as well as receive an approval from at least one code owner.
0 commit comments