diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index c6c389f..db63244 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -31,18 +31,6 @@ jobs: - name: Check code errors run: mypy amazon_paapi - test-py35: - runs-on: ubuntu-latest - container: - image: python:3.5 - steps: - - name: Check out code - uses: actions/checkout@v4 - - name: Install dependencies - run: pip install -e . - - name: Run tests - run: python -m unittest - test-py36: runs-on: ubuntu-latest container: diff --git a/setup.py b/setup.py index 8c8dadb..f570722 100644 --- a/setup.py +++ b/setup.py @@ -20,5 +20,5 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - python_requires=">=3.5", + python_requires=">=3.6", )