Skip to content

Commit 9aff6ca

Browse files
fix openssl module issue
1 parent 568ffbf commit 9aff6ca

File tree

4 files changed

+243
-1
lines changed

4 files changed

+243
-1
lines changed

Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ google-api-python-client = "*"
99
"oauth2client" = "*"
1010
aiohttp = "*"
1111
urllib3 = "*"
12+
pyopenssl = "<=24.2.1"
1213

1314
[dev-packages]
1415
pytest-sugar = "*"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ dependencies = [
2929
"requests",
3030
"google-api-python-client",
3131
"oauth2client",
32+
"pyOpenSSL<=24.2.1",
3233
]
3334

3435
[project.optional-dependencies]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def get_description():
1111
name="inapppy",
1212
version="2.6",
1313
packages=["inapppy", "inapppy.asyncio"],
14-
install_requires=["aiohttp", "rsa", "requests", "google-api-python-client", "oauth2client"],
14+
install_requires=["aiohttp", "rsa", "requests", "google-api-python-client", "oauth2client", "pyOpenSSL<=24.2.1"],
1515
description="In-app purchase validation library for Apple AppStore and GooglePlay.",
1616
keywords="in-app store purchase googleplay appstore validation",
1717
author="Lukas Šalkauskas",

0 commit comments

Comments
 (0)