Skip to content

Commit

Permalink
Merge pull request #10 from phyng/dev
Browse files Browse the repository at this point in the history
chore(project): fix test and release 0.0.13
  • Loading branch information
phyng committed Mar 22, 2021
2 parents 8b95fe1 + 70c52e4 commit 0d9eab8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "scilib"
version = "0.0.12"
version = "0.0.13"
description = "scilib"
license = "MIT"
readme = "README.md"
Expand Down
6 changes: 5 additions & 1 deletion scilib/wos/parse_categorys.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@
def _get_wc_ecoom_map_lower():
df_ecoom_category = pd.read_excel(os.path.join(BASE_DIR, 'configs/ecoom_category_20190806.xlsx'))
wc_ecoom_map = {row['WC']: row['ECOOM'] for i, row in df_ecoom_category.iterrows()}
wc_ecoom_map_lower = {k.lower().strip(): v.lower().strip() for k, v in wc_ecoom_map.items()}
wc_ecoom_map_lower = {
k.lower().strip(): v.lower().strip()
for k, v in wc_ecoom_map.items()
if k and str(k) != 'nan'
}
return wc_ecoom_map_lower


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="scilib",
version="0.0.11",
version="0.0.13",
author="phyng",
author_email="phyngk@gmail.com",
description="scilib",
Expand Down

0 comments on commit 0d9eab8

Please sign in to comment.