Skip to content

Commit

Permalink
doc; build sub; upgrade deps and python +3.11 -3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
plandes committed Dec 6, 2023
1 parent 52c2511 commit afaeef1
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10']
python-version: ['3.10', '3.11']
steps:
- name: Checkout reposistory
uses: actions/checkout@v3
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]


## [1.5.0] - 2023-12-05
### Changed
- Upgrade libraries: `numpy`, `lxml`, `scikitlearn`, `scipy`, `medcat`.
- Added `scispacy` dependency.

### Added
- Support for Python 3.11.

### Removed
- Support for Python 3.9.


## [1.4.1] - 2023-09-08
### Changed
Expand Down Expand Up @@ -114,7 +121,8 @@ Downstream moderate risk update release.


<!-- links -->
[Unreleased]: https://github.com/Paul Landes/mednlp/compare/v1.4.1...HEAD
[Unreleased]: https://github.com/Paul Landes/mednlp/compare/v1.5.0...HEAD
[1.5.0]: https://github.com/Paul Landes/mednlp/compare/v1.4.1...v1.5.0
[1.4.1]: https://github.com/Paul Landes/mednlp/compare/v1.4.0...v1.4.1
[1.4.0]: https://github.com/Paul Landes/mednlp/compare/v1.3.2...v1.4.0
[1.3.2]: https://github.com/Paul Landes/mednlp/compare/v1.3.1...v1.3.2
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Paul Landes
Copyright (c) 2021 - 2023 Paul Landes

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
33 changes: 22 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Medical natural language parsing and utility library

[![PyPI][pypi-badge]][pypi-link]
[![Python 3.9][python39-badge]][python39-link]
[![Python 3.10][python310-badge]][python310-link]
[![Python 3.11][python311-badge]][python311-link]
[![Build Status][build-badge]][build-link]

A natural language medical domain parsing library. This library:
Expand Down Expand Up @@ -85,18 +85,29 @@ This API utilizes the following frameworks:
## Citation

If you use this project in your research please use the following BibTeX entry:

```bibtex
@article{Landes_DiEugenio_Caragea_2021,
title={DeepZensols: Deep Natural Language Processing Framework},
url={http://arxiv.org/abs/2109.03383},
note={arXiv: 2109.03383},
journal={arXiv:2109.03383 [cs]},
author={Landes, Paul and Di Eugenio, Barbara and Caragea, Cornelia},
year={2021},
month={Sep}
@inproceedings{landes-etal-2023-deepzensols,
title = "{D}eep{Z}ensols: A Deep Learning Natural Language Processing Framework for Experimentation and Reproducibility",
author = "Landes, Paul and
Di Eugenio, Barbara and
Caragea, Cornelia",
editor = "Tan, Liling and
Milajevs, Dmitrijs and
Chauhan, Geeticka and
Gwinnup, Jeremy and
Rippeth, Elijah",
booktitle = "Proceedings of the 3rd Workshop for Natural Language Processing Open Source Software (NLP-OSS 2023)",
month = dec,
year = "2023",
address = "Singapore, Singapore",
publisher = "Empirical Methods in Natural Language Processing",
url = "https://aclanthology.org/2023.nlposs-1.16",
pages = "141--146"
}
```


## Community

Please star the project and let me know how and where you use this API.
Expand All @@ -119,10 +130,10 @@ Copyright (c) 2021 - 2023 Paul Landes
[pypi]: https://pypi.org/project/zensols.mednlp/
[pypi-link]: https://pypi.python.org/pypi/zensols.mednlp
[pypi-badge]: https://img.shields.io/pypi/v/zensols.mednlp.svg
[python39-badge]: https://img.shields.io/badge/python-3.9-blue.svg
[python39-link]: https://www.python.org/downloads/release/python-390
[python310-badge]: https://img.shields.io/badge/python-3.10-blue.svg
[python310-link]: https://www.python.org/downloads/release/python-3100
[python311-badge]: https://img.shields.io/badge/python-3.11-blue.svg
[python311-link]: https://www.python.org/downloads/release/python-3110
[build-badge]: https://github.com/plandes/mednlp/workflows/CI/badge.svg
[build-link]: https://github.com/plandes/mednlp/actions

Expand Down
8 changes: 4 additions & 4 deletions src/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# base
numpy>=1.25.2
lxml~=4.9.3
numpy~=1.25.2
scikit-learn~=1.3.2

# medcat
pandas~=2.1.3
blis~=0.7.11
pandas~=2.1.3
scipy~=1.9.3
scispacy~=0.5.3
medcat~=1.9.3
Expand All @@ -14,5 +14,5 @@ medcat~=1.9.3
ctakes-parser~=0.1.0

# zensols
zensols.install~=1.0.0
zensols.nlp~=1.8.0
zensols.install~=1.1.0
zensols.nlp~=1.9.0

0 comments on commit afaeef1

Please sign in to comment.