-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'PaloAltoNetworks:develop' into advanced-routing-engine
- Loading branch information
Showing
40 changed files
with
1,933 additions
and
712 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
// README at: https://github.com/devcontainers/templates/tree/main/src/python | ||
{ | ||
"name": "Python 3", | ||
"image": "mcr.microsoft.com/devcontainers/python:1-3.9-bullseye", | ||
"features": { | ||
"ghcr.io/devcontainers-contrib/features/poetry:2": { | ||
"version": "latest" | ||
}, | ||
"ghcr.io/dhoeric/features/google-cloud-cli:1": {} | ||
}, | ||
"postCreateCommand": "poetry install", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
// Python | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"ms-python.black-formatter", | ||
"ms-python.flake8", | ||
"matangover.mypy", | ||
"nwgh.bandit", | ||
"KevinRose.vsc-python-indent", | ||
// RestructuredText | ||
"lextudio.restructuredtext", | ||
"trond-snekvik.simple-rst", | ||
// Helpers | ||
"tamasfe.even-better-toml", | ||
"njpwerner.autodocstring", | ||
"aaron-bond.better-comments", | ||
// Tools | ||
"github.vscode-github-actions", | ||
"GitHub.copilot", | ||
"ms-toolsai.jupyter", | ||
// VIM | ||
"vscodevim.vim" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.7" | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
# We recommend specifying your dependencies to enable reproducible builds: | ||
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
mistune<2.0.0 | ||
m2r==0.2.1 | ||
m2r==0.3.1 | ||
sphinx_rtd_theme | ||
pan-python==0.17.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Global options: | ||
|
||
[mypy] | ||
ignore_missing_imports = True | ||
; follow_imports = silent | ||
show_column_numbers = True | ||
warn_unused_configs = False | ||
disallow_subclassing_any = False | ||
disallow_any_generics = False | ||
disallow_untyped_calls = False | ||
disallow_untyped_defs = False | ||
disallow_incomplete_defs = False | ||
check_untyped_defs = True | ||
disallow_untyped_decorators = False | ||
no_implicit_optional = False | ||
warn_redundant_casts = False | ||
warn_unused_ignores = False | ||
warn_return_any = False | ||
|
||
# Per-module options: | ||
|
||
## In this section, add overrides for specific files, modules, or functions | ||
## that don't yet have type annotations. For example: | ||
## [mypy-older_module.older_file] | ||
## disallow_untyped_defs = False | ||
|
||
[mypy-panos.updater] | ||
disallow_subclassing_any = True | ||
disallow_any_generics = True | ||
disallow_untyped_defs = False | ||
disallow_incomplete_defs = True | ||
check_untyped_defs = True | ||
disallow_untyped_decorators = True | ||
no_implicit_optional = True | ||
warn_unused_ignores = True | ||
warn_return_any = True |
Oops, something went wrong.