-
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.
Bump nlpsandbox-client from 1.1.0 to 2.0.0 in /server (#115)
* Bump nlpsandbox-client from 1.1.0 to 2.0.0 in /server Bumps [nlpsandbox-client](https://github.com/nlpsandbox/nlpsandbox-client) from 1.1.0 to 2.0.0. - [Release notes](https://github.com/nlpsandbox/nlpsandbox-client/releases) - [Commits](nlpsandbox/nlpsandbox-client@1.1.0...2.0.0) --- updated-dependencies: - dependency-name: nlpsandbox-client dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Update nlpsandbox-client to v3 * Remove nlpsandbox-client from test-requirements.txt * Import from nlpsandbox-client v3 * Review how .env is used with docker * Comment out docker-compose.yml validation * Add nlpsandbox-client to Test Requirements * Fix test-requirements.txt Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Connor Boyle <[email protected]> Co-authored-by: tschaffter <[email protected]>
- Loading branch information
1 parent
319082f
commit 0e2a8f9
Showing
9 changed files
with
34 additions
and
19 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 |
---|---|---|
@@ -1,16 +1,30 @@ | ||
# API SERVER | ||
# NLP Sandbox PHI Deidentifier | ||
SERVER_PROTOCOL=http:// | ||
SERVER_HOST=localhost | ||
SERVER_PORT=8080 | ||
SERVER_PORT=80 | ||
|
||
## Tool dependencies | ||
### NLP Sandbox Date Annotator | ||
DATE_ANNOTATOR_PROTOCOL=http:// | ||
DATE_ANNOTATOR_HOST=localhost | ||
DATE_ANNOTATOR_PORT=9000 | ||
|
||
### NLP Sandbox Person Name Annotator | ||
PERSON_NAME_ANNOTATOR_PROTOCOL=http:// | ||
PERSON_NAME_ANNOTATOR_HOST=localhost | ||
PERSON_NAME_ANNOTATOR_PORT=9001 | ||
|
||
### NLP Sandbox Physical Address Annotator | ||
PHYSICAL_ADDRESS_ANNOTATOR_PROTOCOL=http:// | ||
PHYSICAL_ADDRESS_ANNOTATOR_HOST=localhost | ||
PHYSICAL_ADDRESS_ANNOTATOR_PORT=9002 | ||
PHYSICAL_ADDRESS_ANNOTATOR_PORT=9002 | ||
|
||
### NLP Sandbox Contact Annotator | ||
CONTACT_ANNOTATOR_PROTOCOL=http:// | ||
CONTACT_ANNOTATOR_HOST=localhost | ||
CONTACT_ANNOTATOR_PORT=9003 | ||
|
||
### NLP Sandbox ID Annotator | ||
ID_ANNOTATOR_PROTOCOL=http:// | ||
ID_ANNOTATOR_HOST=localhost | ||
ID_ANNOTATOR_PORT=9004 |
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,8 +1,8 @@ | ||
.env | ||
.empty/ | ||
.vscode/ | ||
node_modules/ | ||
|
||
client/env_vars | ||
dist.yaml | ||
client/env_vars | ||
node_modules/ | ||
openapi.yaml | ||
openapitools.json |
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
4 changes: 2 additions & 2 deletions
4
server/openapi_server/controllers/deidentified_note_controller.py
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,6 +1,6 @@ | ||
connexion==2.7.0 | ||
mongoengine==0.23.1 | ||
nlpsandbox-client==1.1.0 | ||
nlpsandbox-client==3.0.0 | ||
psycopg2-binary==2.8.6 | ||
requests==2.25.1 | ||
swagger-ui-bundle==0.0.8 |
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,5 +1,4 @@ | ||
Flask-Testing==0.8.1 | ||
nlpsandbox-client==1.1.0 | ||
pytest-cov>=2.8.1 | ||
pytest-randomly==3.8.0 # needed for python 2.7+3.4 | ||
pytest~=6.2.4 # needed for python 2.7+3.4 |