Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update supported Python version #356

Merged
merged 4 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/installation/DownloadAndInstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To download ScubaGoggles:
3. Extract the folder in the zip file.

## Installing Python Dependencies
Minimum required Python version to run the tool is `3.7.16`.
As of August 2024, minimum required Python version to run the tool is `3.10.x` to support newer version of dependent packages. To support newer version of packages, you may need to update to a newer Python version.
aormu marked this conversation as resolved.
Show resolved Hide resolved

### Installing in a Virtual Environment
The following commands are used to set up a python virtual environment (venv) to install the needed python dependencies.
Expand Down
14 changes: 7 additions & 7 deletions requirements.txt
adhilto marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
google-api-python-client==1.7.9
google-auth-httplib2==0.0.3
google-auth-oauthlib==0.4.0
MarkupSafe==2.1.1
google-api-python-client==2.142.0
google-auth-httplib2==0.2.0
google-auth-oauthlib==1.2.1
MarkupSafe==2.1.5
dnspython==2.6.1
pandas==1.5.0
tqdm==4.66.3
requests==2.32.0
pandas==2.2.0
tqdm==4.66.5
requests==2.32.3
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
from setuptools import setup, find_packages

setup(name='scubagoggles',
version='0.2.0',
version='0.3.0',
description='SCuBA security baseline assessment tool',
author='CISA',
packages=find_packages(exclude=['__pycache__']),
package_data = {
'scubagoggles': ['reporter/**/*']
},
include_package_data=True,
python_requires='>=3.7.16',
python_requires='>=3.10.0',
install_requires=[
'google-api-python-client==1.7.9',
'google-auth-httplib2==0.0.3',
'google-auth-oauthlib==0.4.0',
'MarkupSafe==2.1.1',
'google-api-python-client==2.142.0',
'google-auth-httplib2==0.2.0',
'google-auth-oauthlib==1.2.1',
'MarkupSafe==2.1.5',
'dnspython==2.6.1',
'pandas==1.5.0',
'tqdm==4.66.3',
'requests==2.32.0'
'pandas==2.2.0',
'tqdm==4.66.5',
'requests==2.32.3'
],
entry_points={
'console_scripts': ['scubagoggles=scubagoggles.main:dive']
Expand Down
Loading