Skip to content

Commit

Permalink
Issue #113: Remove Python 3.5 & Python 3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekmo committed Jul 3, 2023
1 parent 1eafe05 commit 59a339a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http://docs.nekmo.org/dirhunt/installation.html>`_ available.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ########

Expand Down

0 comments on commit 59a339a

Please sign in to comment.