-
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.
feature!: Squashed commit of features and fixes. (#53)
* Stability improvements: Redact_folder: Reduce checks for completion to every 10s. Limit parallel uploads and cache connections. Retry requests that fail due to connection reasons. Fix premature closing of http client instance. Stream download to file instead of to memory. * Add option for automated deletion of input file to redact-folder. --auto_delete_input_file deletes the input file after successful processing * Add verbose logging option to log more details. --verbose_logging switch adds datetime to log and sets level to debug. * Update dependencies to fix vulnerabilities, this also required dropping Python 3.6 support. * Redact_file: Provide additional config options. * feature: Fix test-integration to run on mac and windows. BREAKING CHANGE: Drop Python 3.6 support.
- Loading branch information
1 parent
2b965c4
commit efd2b5f
Showing
20 changed files
with
351 additions
and
110 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
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,4 +1,4 @@ | ||
VERSION=4.8.1 | ||
VERSION=5.0.0 | ||
|
||
SHELL := /bin/bash | ||
|
||
|
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 |
---|---|---|
|
@@ -11,11 +11,10 @@ module = "redact" | |
author = "brighter AI" | ||
author-email = "[email protected]" | ||
home-page = "https://github.com/brighter-ai" | ||
requires-python = ">=3.6" | ||
requires-python = ">=3.7" | ||
requires = [ | ||
"httpcore~=0.12.3", | ||
"httpx~=0.17.1", | ||
"pydantic~=1.8.2", | ||
"tqdm~=4.60.0", | ||
"typer~=0.3.2" | ||
"httpx~=0.23.0", | ||
"pydantic~=1.9.1", | ||
"tqdm~=4.64.0", | ||
"typer~=0.6.1", | ||
] |
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.