Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

Commit

Permalink
Merge pull request #259 from cisagov/EM-improve-dnstwist
Browse files Browse the repository at this point in the history
Dnstwist Improvements
  • Loading branch information
cduhn17 committed Dec 30, 2022
2 parents 0c89337 + 4001e19 commit d3d7439
Show file tree
Hide file tree
Showing 10 changed files with 680 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
Expand Down Expand Up @@ -199,7 +198,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ repos:
rev: 22.3.0
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
- repo: https://github.com/PyCQA/flake8
rev: 3.9.2
hooks:
- id: flake8
Expand Down
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,18 @@ def get_version(version_file):
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
# Temporarily remove support for Python 3.6 due to build failures; will be reinstated
# after https://github.com/cisagov/skeleton-python-library/pull/110 is merged
# See issue #374 "Re-implement 3.6 compatibility"
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
# "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.6",
# Revert to 3.6 when issue is resolved, see issue Re-implement 3.6 compatibility #374
python_requires=">=3.7",
# What does your project relate to?
keywords="posture and exposure report",
packages=find_packages(where="src"),
Expand All @@ -98,7 +102,9 @@ def get_version(version_file):
"chevron == 0.14.0",
"celery",
"click",
"dnstwist",
"docopt",
"DShield",
"glob2 == 0.7",
"flask",
"flask",
Expand Down
1 change: 1 addition & 0 deletions src/pe_reports/helpers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Init file for module implementation."""
1 change: 1 addition & 0 deletions src/pe_reports/helpers/bulletin/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Init file for module implementation."""

0 comments on commit d3d7439

Please sign in to comment.