diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f9c1894..13ddc79 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9] os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: diff --git a/README.md b/README.md index 3c6bfb7..f13f9fd 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Docker Hub CLI A CLI tool to access Docker Hub from your terminal. ## Installation -> Note: Python 3.5+ is required. +> Note: Python 3.6+ is required. You should have pip installed in your system. ```sh diff --git a/setup.py b/setup.py index f0bff0c..e19dd4c 100644 --- a/setup.py +++ b/setup.py @@ -57,5 +57,5 @@ def find_version(*file_paths): 'Natural Language :: English', 'Programming Language :: Python :: 3', ], - python_requires='>=3.5', + python_requires='>=3.6', )