Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"constellation>=1.4.0",
"constellation>=1.5.0",
"docopt",
"psycopg2"
]
Expand Down
2 changes: 1 addition & 1 deletion deploy/src/montagu_deploy/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-present Alex <[email protected]>
#
# SPDX-License-Identifier: MIT
__version__ = "0.1.2"
__version__ = "0.1.3"
2 changes: 1 addition & 1 deletion deploy/tests/test_constellation.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_proxy_configured_self_signed():

api = get_container(cfg, "proxy")
cert = docker_util.string_from_container(api, "/etc/montagu/proxy/certificate.pem")
key = docker_util.string_from_container(api, "/etc/montagu/proxy/ssl_key.pem")
key = docker_util.string_from_container(api, "/etc/montagu/proxy/key.pem")
assert cert is not None
assert key is not None

Expand Down
Loading