├── .assets └── docs-sample.png ├── .codecov.yml ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── mergify.yml ├── stale.yml └── workflows │ ├── _create-pkg.yml │ ├── ci_install-pkg.yml │ ├── ci_testing.yml │ ├── code-format.yml │ ├── codeql.yml │ ├── greetings.yml │ ├── publish-pkg.yml │ └── sample-docs.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── _config.yml ├── pyproject.toml ├── setup.py ├── src └── deprecate │ ├── __about__.py │ ├── __init__.py │ ├── deprecation.py │ └── utils.py ├── temp_docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── conf.py │ ├── index.rst │ └── sandbox.rst └── tests ├── __init__.py ├── collection_deprecate.py ├── collection_misconfigured.py ├── collection_targets.py ├── requirements.txt ├── test_classes.py ├── test_docs.py ├── test_functions.py └── test_utils.py /.assets/docs-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.assets/docs-sample.png -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/mergify.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/_create-pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/workflows/_create-pkg.yml -------------------------------------------------------------------------------- /.github/workflows/ci_install-pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/workflows/ci_install-pkg.yml -------------------------------------------------------------------------------- /.github/workflows/ci_testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/workflows/ci_testing.yml -------------------------------------------------------------------------------- /.github/workflows/code-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/workflows/code-format.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/workflows/publish-pkg.yml -------------------------------------------------------------------------------- /.github/workflows/sample-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.github/workflows/sample-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/_config.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/setup.py -------------------------------------------------------------------------------- /src/deprecate/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/src/deprecate/__about__.py -------------------------------------------------------------------------------- /src/deprecate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/src/deprecate/__init__.py -------------------------------------------------------------------------------- /src/deprecate/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/src/deprecate/deprecation.py -------------------------------------------------------------------------------- /src/deprecate/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/src/deprecate/utils.py -------------------------------------------------------------------------------- /temp_docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/temp_docs/Makefile -------------------------------------------------------------------------------- /temp_docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/temp_docs/make.bat -------------------------------------------------------------------------------- /temp_docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=4.0 2 | pandoc 3 | furo 4 | -------------------------------------------------------------------------------- /temp_docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/temp_docs/source/conf.py -------------------------------------------------------------------------------- /temp_docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/temp_docs/source/index.rst -------------------------------------------------------------------------------- /temp_docs/source/sandbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/temp_docs/source/sandbox.rst -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Root of testing, needed for lical imports.""" 2 | -------------------------------------------------------------------------------- /tests/collection_deprecate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/tests/collection_deprecate.py -------------------------------------------------------------------------------- /tests/collection_misconfigured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/tests/collection_misconfigured.py -------------------------------------------------------------------------------- /tests/collection_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/tests/collection_targets.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/tests/test_classes.py -------------------------------------------------------------------------------- /tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/tests/test_docs.py -------------------------------------------------------------------------------- /tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/tests/test_functions.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borda/pyDeprecate/HEAD/tests/test_utils.py --------------------------------------------------------------------------------