updates to Pipefiles, requirements.txt, and setup.py to account for addition of mako dependency

This commit is contained in:
Blake Harnden 2020-01-24 17:12:14 -08:00
parent b02f2251cd
commit bc2fb628cc
4 changed files with 21 additions and 20 deletions

View file

@ -21,4 +21,3 @@ mock = "*"
[packages] [packages]
core = {editable = true,path = "."} core = {editable = true,path = "."}
mako = "*"

25
daemon/Pipfile.lock generated
View file

@ -1,7 +1,7 @@
{ {
"_meta": { "_meta": {
"hash": { "hash": {
"sha256": "3d8bcb3cbfddc5803b6f2309330c77e815b44ed81f42644f4d42b625e65b5d24" "sha256": "d702e6eed5a1362bf261543572bbffd2e8a87140b8d8cb07b99fb0d25220a2b5"
}, },
"pipfile-spec": 6, "pipfile-spec": 6,
"requires": {}, "requires": {},
@ -201,10 +201,9 @@
}, },
"mako": { "mako": {
"hashes": [ "hashes": [
"sha256:a36919599a9b7dc5d86a7a8988f23a9a3a3d083070023bab23d64f7f1d1e0a4b" "sha256:2984a6733e1d472796ceef37ad48c26f4a984bb18119bb2dbc37a44d8f6e75a4"
], ],
"index": "pypi", "version": "==1.1.1"
"version": "==1.1.0"
}, },
"markupsafe": { "markupsafe": {
"hashes": [ "hashes": [
@ -576,10 +575,10 @@
}, },
"packaging": { "packaging": {
"hashes": [ "hashes": [
"sha256:aec3fdbb8bc9e4bb65f0634b9f551ced63983a529d6a8931817d52fdd0816ddb", "sha256:170748228214b70b672c581a3dd610ee51f733018650740e98c7df862a583f73",
"sha256:fe1d8331dfa7cc0a883b49d75fc76380b2ab2734b220fbb87d774e4fd4b851f8" "sha256:e665345f9eef0c621aa0bf2f8d78cf6d21904eef16a93f020240b704a57f1334"
], ],
"version": "==20.0" "version": "==20.1"
}, },
"pluggy": { "pluggy": {
"hashes": [ "hashes": [
@ -649,11 +648,11 @@
}, },
"pytest": { "pytest": {
"hashes": [ "hashes": [
"sha256:9f8d44f4722b3d06b41afaeb8d177cfbe0700f8351b1fc755dd27eedaa3eb9e0", "sha256:1d122e8be54d1a709e56f82e2d85dcba3018313d64647f38a91aec88c239b600",
"sha256:f5d3d0e07333119fe7d4af4ce122362dc4053cdd34a71d2766290cf5369c64ad" "sha256:c13d1943c63e599b98cf118fcb9703e4d7bde7caa9a432567bcdcae4bf512d20"
], ],
"index": "pypi", "index": "pypi",
"version": "==5.3.3" "version": "==5.3.4"
}, },
"pyyaml": { "pyyaml": {
"hashes": [ "hashes": [
@ -701,10 +700,10 @@
}, },
"zipp": { "zipp": {
"hashes": [ "hashes": [
"sha256:8dda78f06bd1674bd8720df8a50bb47b6e1233c503a4eed8e7810686bde37656", "sha256:b338014b9bc7102ca69e0fb96ed07215a8954d2989bc5d83658494ab2ba634af",
"sha256:d38fbe01bbf7a3593a32bc35a9c4453c32bc42b98c377f9bff7e9f8da157786c" "sha256:e013e7800f60ec4dde789ebf4e9f7a54236e4bbf5df2a1a4e20ce9e1d9609d67"
], ],
"version": "==1.0.0" "version": "==2.0.1"
} }
} }
} }

View file

@ -3,13 +3,15 @@ cffi==1.13.2
cryptography==2.8 cryptography==2.8
fabric==2.5.0 fabric==2.5.0
grpcio==1.26.0 grpcio==1.26.0
invoke==1.3.0 invoke==1.4.0
lxml==4.4.2 lxml==4.4.2
Mako==1.1.1
MarkupSafe==1.1.1
netaddr==0.7.19 netaddr==0.7.19
paramiko==2.7.1 paramiko==2.7.1
pillow==6.2.1 Pillow==7.0.0
protobuf==3.11.1 protobuf==3.11.2
pycparser==2.19 pycparser==2.19
pynacl==1.3.0 PyNaCl==1.3.0
pyyaml==5.2 PyYAML==5.3
six==1.13.0 six==1.14.0

View file

@ -39,6 +39,7 @@ setup(
"netaddr", "netaddr",
"invoke", "invoke",
"lxml", "lxml",
"mako",
"pillow", "pillow",
"protobuf", "protobuf",
"pyyaml", "pyyaml",