Skip to content

Commit

Permalink
Remove python 3.11 dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jakurban committed May 21, 2024
1 parent d1e479e commit bc31f49
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 36 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ requests = "*"
backoff = "*"

[requires]
python_version = "3.11"
python_version = "3"
65 changes: 32 additions & 33 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/integration/conftest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import secrets
import time
from distutils.util import strtobool


import pytest
from dotenv import load_dotenv
Expand Down Expand Up @@ -46,7 +46,7 @@ def master_token() -> str:
@pytest.fixture(scope="session")
def ssl_verify() -> bool:
ssl_verify = os.getenv('THREESCALE_SSL_VERIFY', 'false')
return bool(strtobool(ssl_verify))
return ssl_verify.lower() in ('y', 'yes', 't', 'true', 'on', '1')


@pytest.fixture(scope='session')
Expand Down

0 comments on commit bc31f49

Please sign in to comment.