Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken inferlink example #431

Open
wants to merge 6 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/update_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Upload Python Package - etk

on:
push:
tags:
- '*'
jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: usc_isi_i2_admin
TWINE_PASSWORD: ${{ secrets.PYPI }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
2 changes: 1 addition & 1 deletion etk/etk.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def process_ems(self, doc: Document) -> List[Document]:
# self.log(str(e) + " processing with " + str(type(a_em)), "error", doc.doc_id, doc.url)
# raise e

if self.kg_schema.legacy:
if self.kg_schema and self.kg_schema.legacy:
# Do house cleaning.
doc.insert_kg_into_cdr()
Utility.make_json_serializable(doc.cdr_document)
Expand Down