Skip to content

Commit

Permalink
Merge pull request #11 from SironaMedical/AIE-2493-py311
Browse files Browse the repository at this point in the history
AIE-2493 py311 and other packaging updates
  • Loading branch information
jclerman authored Aug 29, 2023
2 parents a08818d + 1869118 commit a514fa2
Show file tree
Hide file tree
Showing 6 changed files with 317 additions and 200 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.8, 3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 7 additions & 1 deletion philter_lite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.0"
from importlib import metadata

from philter_lite.coordinate_map import CoordinateMap
from philter_lite.filters import Filter, filter_from_dict, load_filters
Expand All @@ -7,3 +7,9 @@
# Writers
from .asterisk import transform_text_asterisk
from .i2b2 import transform_text_i2b2

_DISTRIBUTION_METADATA = metadata.metadata("philter_lite")

__author__ = _DISTRIBUTION_METADATA["Author"]
__email__ = _DISTRIBUTION_METADATA["Author-email"]
__version__ = _DISTRIBUTION_METADATA["Version"]
Loading

0 comments on commit a514fa2

Please sign in to comment.