File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ ```
You can’t perform that action at this time.
0 commit comments