Skip to content

Commit d91309c

Browse files
committed
Add requirements.txt file
This commit adds a requirements.txt file so we can ensure dependencies are versioned instead of going for the latest available version.
1 parent 7de3551 commit d91309c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ The resource module builder is an Ansible Playbook that helps developers scaffol
1616
### Usage
1717

1818
```
19-
pip install ansible
20-
pip install jsonref
19+
pip install -r requirements.txt
2120
```
2221

2322
```

requirements.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# The order of packages is significant, because pip processes them in the order
2+
# of appearance. Changing the order has an impact on the overall integration
3+
# process, which may cause wedges in the gate later.
4+
5+
ansible>=2.8.0 # GPLv3
6+
jsonref>=0.2 # MIT

0 commit comments

Comments
 (0)