Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin cryptography to < 43.0.0 #111

Merged
merged 2 commits into from
Jul 25, 2024
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
4 changes: 2 additions & 2 deletions infrahouse_toolkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
Top-level package for InfraHouse Toolkit.

:Author: Oleksandr Kuzminskyi
:Version: 2.28.0
:Version: 2.28.1
:Email: aleks@infrahouse.com
"""

__author__ = """Oleksandr Kuzminskyi"""
__email__ = "aleks@infrahouse.com"
__version__ = "2.28.0"
__version__ = "2.28.1"

DEFAULT_OPEN_ENCODING = "utf8"
DEFAULT_ENCODING = DEFAULT_OPEN_ENCODING
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# and /opt/infrahouse-toolkit on all other platforms
install_dir "#{default_root}/#{name}"

build_version '2.28.0'
build_version '2.28.1'
build_iteration 1

override :openssl, version: '1.1.1t'
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ botocore ~= 1.29
certbot ~= 2.9
certbot-dns-route53 ~= 2.9
click ~= 8.1
cryptography < 43.0.0 # Pinning until https://github.com/certbot/certbot/issues/9967 is fixed.
diskcache ~= 5.6
elasticsearch ~= 8.12.0
pyhcl ~= 0.4
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.28.0
current_version = 2.28.1
commit = True

[bumpversion:file:setup.py]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ def parse_requirements(req_file):
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/infrahouse/infrahouse-toolkit",
version="2.28.0",
version="2.28.1",
zip_safe=False,
)
Loading