Skip to content

Commit

Permalink
Issue #117: Python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekmo committed Aug 7, 2023
1 parent fa77aab commit 14888e7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ body:
placeholder: |
```
Traceback (most recent call last):
File "/usr/lib/python3.11/site-packages/dirhunt/scripts/dirhunt", line 6, in <module>
File "/usr/lib/python3.12/site-packages/dirhunt/scripts/dirhunt", line 6, in <module>
catch(hunt)()
```
Expand All @@ -54,7 +54,7 @@ body:
description: The output of `dirhunt --version`.
placeholder: |
```
You are running Dirhunt v1.0.0 using Python 3.11.3.
You are running Dirhunt v1.0.0 using Python 3.12.0.
This is the latest release
Installation path: /usr/lib/python3.11/site-packages/dirhunt
Current path: /home/user/
Expand Down
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.7, 3.8, 3.9, "3.10", "3.11"]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12-dev"]

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 and Python 3.7-3.11, and for PyPy. Check
3. The pull request should work for Python 2.7 and Python 3.7-3.12, 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 @@ -82,7 +82,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.7-3.11 are supported but Python 3.x is recommended. Use ``pip2`` on install for Python2.
Python 2.7 & 3.7-3.12 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.7', '3.8', '3.9', '3.10', '3.11']
PYTHON_VERSIONS = ['2.7', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

######## FIN DE LA CONFIGURACIÓN DEL PAQUTE ########

Expand Down

0 comments on commit 14888e7

Please sign in to comment.