Skip to content

Commit 9668c5c

Browse files
authored
Merge pull request #308 from abelsiqueira/patch-1
2 parents 57a1321 + 5e313ea commit 9668c5c

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
**Description*
2+
3+
<!-- Description of PR -->
4+
5+
<!--
6+
**Related issues**:
7+
- ...
8+
-->
9+
10+
**Instructions to review the pull request**
11+
12+
<!-- remove what doesn't apply or add more if needed -->
13+
Create a `python-template-test` repo on GitHub (will be overwritten if existing)
14+
```
15+
cd $(mktemp -d --tmpdir py-tmpl-XXXXXX)
16+
cookiecutter -c <pr-branch> https://github.com/<pr-user>/python-template
17+
# Fill with python-template-test info
18+
cd python-template-test
19+
git init
20+
git add --all
21+
git commit -m "First commit"
22+
git remote add origin https://github.com/<you>/python-template-test
23+
git push -u origin main -f
24+
python -m venv env
25+
source env/bin/activate
26+
python -m pip install --upgrade pip setuptools
27+
python -m pip install '.[dev,publishing]'
28+
```

0 commit comments

Comments
 (0)