Skip to content

Commit

Permalink
Merge pull request #32 from sankalpbhatia/main
Browse files Browse the repository at this point in the history
Revert last commit to make tests pass. Disable 3.7 tests as we do not support that version
  • Loading branch information
agarwal1510 authored Jun 12, 2024
2 parents 6591f0d + 8a50d95 commit 84fb289
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 0 additions & 8 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 84fb289

Please sign in to comment.