diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index dd776cf..b1538ab 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11"] os: [ubuntu-latest, macOS-latest, windows-latest ] steps: diff --git a/docs/installation.rst b/docs/installation.rst index 61e9b2f..b011a36 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -14,14 +14,6 @@ To install aws-msk-iam-sasl-signer-python, run this command in your terminal: $ pip install aws-msk-iam-sasl-signer-python - -To install the library and use the CLI - -.. code-block:: console - - $ pip install aws-msk-iam-sasl-signer-python[console_scripts] - - This is the preferred method to install aws-msk-iam-sasl-signer-python, as it will always install the most recent stable release. If you don't have `pip`_ installed, this `Python installation guide`_ can guide diff --git a/setup.py b/setup.py index 23c250b..36a1830 100644 --- a/setup.py +++ b/setup.py @@ -15,8 +15,7 @@ with open("CHANGELOG.rst") as changelog_file: history = changelog_file.read() -requirements = ["boto3>=1.26,<2.0", "botocore>=1.29,<2.0"] -cli_requirements = ["Click>=7.0"] +requirements = ["Click>=7.0", "boto3>=1.26.125", "botocore>=1.29.125"] test_requirements = [ "pytest==7.3.1", @@ -45,9 +44,6 @@ ], }, install_requires=requirements, - extras_require={ - "console_scripts": cli_requirements - }, license="Apache Software License 2.0", long_description_content_type="text/x-rst", long_description=readme + "\n\n" + history,