From 59a339adffbcf7685ee4dad0ad816bc6d00d9cd3 Mon Sep 17 00:00:00 2001 From: Nekmo Date: Mon, 3 Jul 2023 15:49:04 +0200 Subject: [PATCH] Issue #113: Remove Python 3.5 & Python 3.6 support --- .github/workflows/test.yml | 2 +- CONTRIBUTING.rst | 2 +- README.rst | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bd92e8b..1b3d946 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10"] + python-version: [3.7, 3.8, 3.9, "3.10"] steps: - uses: actions/checkout@v2 diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index c07bf58..dfa1553 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -101,7 +101,7 @@ Before you submit a pull request, check that it meets these guidelines: 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. -3. The pull request should work for Python 2.7, 3.5, 3.6, 3.7 and 3.8, and for PyPy. Check +3. The pull request should work for Python 2.7 and Python 3.7-3.10, and for PyPy. Check https://github.com/Nekmo/dirhunt/actions/workflows/test.yml and make sure that the tests pass for all supported Python versions. diff --git a/README.rst b/README.rst index 09ec817..dfcc765 100644 --- a/README.rst +++ b/README.rst @@ -79,7 +79,7 @@ If you have Pip installed on your system, you can use it to install the latest D $ sudo pip3 install dirhunt -Python 2.7 & 3.5-3.10 are supported but Python 3.x is recommended. Use ``pip2`` on install for Python2. +Python 2.7 & 3.7-3.10 are supported but Python 3.x is recommended. Use ``pip2`` on install for Python2. There are other `installation methods `_ available. diff --git a/setup.py b/setup.py index 74af55d..175256b 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ 'VERSION', 'LICENSE.txt' ] -PYTHON_VERSIONS = ['2.7', '3.5-3.10'] +PYTHON_VERSIONS = ['2.7', '3.7-3.10'] ######## FIN DE LA CONFIGURACIÓN DEL PAQUTE ########