This repository was archived by the owner on Mar 13, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 9898 touch requirements.txt
9999 touch requirements_dev.txt
100100 pip install -r requirements.txt -e .
101- pip freeze --exclude-editable >> requirements.txt
101+ pip freeze --exclude-editable > requirements.txt
102102 pip install -r requirements_dev.txt -e .[dev]
103- pip freeze --exclude-editable >> requirements_dev.txt
103+ pip freeze --exclude-editable > requirements_dev.txt
104+ # ensure non-zero length requirements.txt
105+ echo "# runtime dependencies" >> requirements.txt
104106
105107 - name : Install with latest dependencies
106108 if : ${{ ! matrix.lock }}
Original file line number Diff line number Diff line change @@ -31,4 +31,8 @@ August 18th 2022
3131- removed example code hello.py meaning that this does not
3232 have to be deleted after adopting. Also removed related tests.
3333- Skeleton README reduced to remove example code and to point at
34- skeleton-cli for instructions.
34+ skeleton-cli for instructions.
35+ - Github PR Policy set to rebase only for skeleton and any for cli. This is
36+ to remove any commit hashes from commit comments. If these are present then
37+ github will add incorrect comments to the target repo.
38+
You can’t perform that action at this time.
0 commit comments