Skip to content

Commit 2938b86

Browse files
author
Jakub Urban
committed
Remove python 3.11 dependencies
1 parent 0af4cde commit 2938b86

File tree

3 files changed

+34
-36
lines changed

3 files changed

+34
-36
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ requests = "*"
1515
backoff = "*"
1616

1717
[requires]
18-
python_version = "3.11"
18+
python_version = "3"

Pipfile.lock

Lines changed: 32 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/integration/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import time
44
import string
55
import random
6-
from distutils.util import strtobool
76

87
import pytest
98
from dotenv import load_dotenv
@@ -49,7 +48,7 @@ def master_token() -> str:
4948
@pytest.fixture(scope="session")
5049
def ssl_verify() -> bool:
5150
ssl_verify = os.getenv('THREESCALE_SSL_VERIFY', 'false')
52-
return bool(strtobool(ssl_verify))
51+
return ssl_verify.lower() in ('y', 'yes', 't', 'true', 'on', '1')
5352

5453

5554
@pytest.fixture(scope='session')

0 commit comments

Comments
 (0)