-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPipfile
More file actions
22 lines (18 loc) · 775 Bytes
/
Pipfile
File metadata and controls
22 lines (18 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
# Package `matildapeak-yacker` depends older release of `pyyaml`. I can't get it to install with
# Python 3.9. I've tested it with the newest `pyyaml` version, and it works fine. So I applied
# workaround as described here:
# https://github.com/pypa/pipenv/issues/1921#issuecomment-379131833
# to "override" the pinned dependency version.
[dev-packages]
matildapeak-yacker = "*"
[packages]
pyyaml = "*"
[scripts]
# In Packer invocation, the template file must go after options, but we want to specify options
# as part of `pipenv run build [...]` command.
build = "sh -c 'mkdir -p output && yacker build -var-file=vars.yaml $@ openbsd.yaml' yacker"
clean = "sh -c 'rm -rv output* packer_cache*'"