-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump black version * Improve documentation (#211) * fix error in documentation and improve it * add api.rst documentation file * update chabngelog * fix disk memory usage problem with some github actions * add disk space cleaning for disk space errors * delete windows cleaning since use unix command * Add Training Guides (#212) and Improve Doc * fix error in documentation and improve it * add api.rst documentation file * first draft of training_guidelines * removed installation and getting started from index to specific files for easier redability * added training guide & fixed warnings * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * Update docs/source/training_guide.rst * fix header error * clean spacing * clean spacing README * added details about the data * changed countries names to english * Update docs/source/training_guide.rst Co-authored-by: David Beauchemin <[email protected]> * Update docs/source/training_guide.rst Co-authored-by: David Beauchemin <[email protected]> * formatting - removed blanck line * Update docs/source/training_guide.rst --------- Co-authored-by: Marouane Yassine <[email protected]> Co-authored-by: Marouane Yassine <[email protected]> * improve documentation * bump black version * improve documentation * Bump black from 23.9.1 to 24.3.0 (#218) * Update CODE_OF_CONDUCT.md * Bump black from 23.9.1 to 24.3.0 Bumps [black](https://github.com/psf/black) from 23.9.1 to 24.3.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](psf/black@23.9.1...24.3.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * pyproject.toml * fix black * fix requirements --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: David Beauchemin <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix fastapi security RDoS breach * Improve data validation (#227) * fix typos in documentation * fix pylint * fix black version and black * fix errors in tests * remove fixed version * fix app * fix pylint disable * fix pylint disable * correction in changelog and added stuff for this PR * Remove context manager (#228) * fix imports * add interface for data cleaning pre processing during loading * add interface for data cleaning pre processing during loading * Bpemb hot fix (#229) * hot-fix the problem with BPEmb broken base URL * add changelog * bump version to 0.9.10 * fix numpy due to makor release breaking change * fix numpy due to makor release breaking change * fix numpy due to makor release breaking change * fix tests with new bpemb wrapper * fix tests with new bpemb wrapper * remove unecessary tests * fix app tests * fix app tests * fix app circular import * fix sentry deprecated argument * Fix typos in changelog --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Marouane Yassine <[email protected]> Co-authored-by: Marouane Yassine <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c5c4030
commit 2ecb38d
Showing
73 changed files
with
791 additions
and
614 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
fastapi[all]==0.99.1 | ||
uvicorn==0.22.0 | ||
sentry-sdk[fastapi]==1.28.1 | ||
python-decouple==3.8 | ||
fastapi[all] | ||
uvicorn | ||
sentry-sdk[fastapi] | ||
python-decouple | ||
pydantic |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
from pydantic import BaseModel | ||
|
||
|
||
class Address(BaseModel): | ||
raw: str |
Oops, something went wrong.