Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit 902ce60

Browse files
authored
Merge pull request #9 from epics-containers/dev
fix 0 length requirements.txt issue
2 parents d94a920 + afd9e38 commit 902ce60

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/code.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,11 @@ jobs:
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 }}

docs/explanations/features.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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+

0 commit comments

Comments
 (0)