-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds "Programming Language :: Python :: 3.12" to the package classifiers definition Bump github actions/checkout to v4 (from v3) Increase HTTPX timeout to 30 seconds from 5 seconds Improve generate_filepath rendering of paths with user-home ~ Loosen package dependencies to allow upgrades beyond current minor version Update dev-packages to make sure latest development packages in use Add 14x new exec end-to-end tests covering all sub-commands and option variations Improve type handing and use generic `generate_filepath()` function Hide --metadata-path option by default since it's an unusual use case scenario and likely to cause confusion
- Loading branch information
Showing
22 changed files
with
723 additions
and
79 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "hibp-downloader" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
description = "Efficiently download HIBP new pwned password data by hash-prefix for a local-copy" | ||
authors = ["Nicholas de Jong <[email protected]>"] | ||
license = "BSD-3-Clause" | ||
|
@@ -14,6 +14,11 @@ classifiers = [ | |
"Environment :: Console", | ||
"Intended Audience :: System Administrators", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12" | ||
] | ||
keywords = ["hibp-downloader", "hibp", "haveibeenpwned", "haveibeenpwned-downloader", "sha1", "ntlm"] | ||
|
||
|
@@ -28,26 +33,26 @@ hibp-downloader = "hibp_downloader.main:entrypoint" | |
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
"httpx[http2]" = "^0.25" # https://pypi.org/project/httpx/#history | ||
httpcore = ">=0.17.2" # https://pypi.org/project/httpcore/#history | ||
"typer[all]" = "^0.9" # https://pypi.org/project/typer/#history | ||
shellingham = "^1.5" # https://pypi.org/project/shellingham/#history | ||
aiofiles = "^23.0" # https://pypi.org/project/aiofiles/#history | ||
"httpx[http2]" = ">=0.21" # https://pypi.org/project/httpx/#history | ||
httpcore = ">=0.14" # https://pypi.org/project/httpcore/#history | ||
aiofiles = ">=0.8" # https://pypi.org/project/aiofiles/#history | ||
"typer[all]" = ">=0.9.0" # https://pypi.org/project/typer/#history | ||
shellingham = ">=1.3.0" # https://pypi.org/project/shellingham/#history | ||
|
||
[tool.poetry.dev-dependencies] | ||
black = "^23.11" # https://pypi.org/project/black/#history | ||
flake8 = "^6.1" # https://pypi.org/project/flake8/#history | ||
isort = "^5.12" # https://pypi.org/project/isort/#history | ||
mypy = "^1.7" # https://pypi.org/project/mypy/#history | ||
pycln = "^2.3" # https://pypi.org/project/pycln/#history | ||
black = "^23.12" # https://pypi.org/project/black/#history | ||
flake8 = "^7.0" # https://pypi.org/project/flake8/#history | ||
isort = "^5.13" # https://pypi.org/project/isort/#history | ||
mypy = "^1.8" # https://pypi.org/project/mypy/#history | ||
pycln = "^2.4" # https://pypi.org/project/pycln/#history | ||
pytest = "^7.4" # https://pypi.org/project/pytest/#history | ||
safety = "^2.4.0b1" # https://pypi.org/project/safety/#history | ||
urllib3 = "~2.0" # https://pypi.org/project/urllib3/#history | ||
safety = "^3.0.1" # https://pypi.org/project/safety/#history | ||
urllib3 = "~2.1" # https://pypi.org/project/urllib3/#history | ||
types-aiofiles = "23.2" # https://pypi.org/project/types-aiofiles/#history | ||
# NB: pip installs in .readthedocs.yml need to be kept up-to-date manually | ||
novella = "^0.2" # https://pypi.org/project/novella/#history | ||
pydoc-markdown = "^4.8" # https://pypi.org/project/pydoc-markdown/#history | ||
mkdocs-material = "^9.4" # https://pypi.org/project/mkdocs-material/#history | ||
mkdocs-material = "^9.5" # https://pypi.org/project/mkdocs-material/#history | ||
|
||
[tool.poetry.plugins."slap.plugins.check"] | ||
changelog = "slap.ext.checks.changelog:ChangelogValidationCheckPlugin" | ||
|
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
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
Oops, something went wrong.