Skip to content

Commit

Permalink
requires Python 3.8+
Browse files Browse the repository at this point in the history
  • Loading branch information
zrquan committed Sep 13, 2024
1 parent 50a25ad commit 115de35
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.9]
python-version: [3.8, 3.9]
os: ['ubuntu-latest', 'windows-latest']

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Table of Contents
Installation & Usage
------------

**Requirement: python 3.7 or higher**
**Requirement: python 3.8 or higher**

Choose one of these installation options:

Expand Down
4 changes: 2 additions & 2 deletions dirsearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
from lib.core.settings import OPTIONS_FILE
from lib.parse.config import ConfigParser

if sys.version_info < (3, 7):
sys.stderr.write("Sorry, dirsearch requires Python 3.7 or higher\n")
if sys.version_info < (3, 8):
sys.stderr.write("Sorry, dirsearch requires Python 3.8 or higher\n")
sys.exit(1)


Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
entry_points={"console_scripts": ["dirsearch=dirsearch.dirsearch:main"]},
package_data={"dirsearch": ["*", "db/*"]},
include_package_data=True,
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=get_dependencies(),
classifiers=[
"Programming Language :: Python",
Expand All @@ -39,7 +39,7 @@
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Topic :: Security",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords=["infosec", "bug bounty", "pentesting", "security"],
)

0 comments on commit 115de35

Please sign in to comment.