diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 100df35e..fb027f62 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.8', '3.9', '3.10', '3.11' ] + python-version: [ '3.9', '3.10', '3.11' ] max-parallel: 4 steps: diff --git a/setup.py b/setup.py index 549e7c09..08440b9e 100644 --- a/setup.py +++ b/setup.py @@ -27,12 +27,12 @@ packages=['medcat', 'medcat.utils', 'medcat.preprocessing', 'medcat.ner', 'medcat.linking', 'medcat.datasets', 'medcat.tokenizers', 'medcat.utils.meta_cat', 'medcat.pipeline', 'medcat.utils.ner', 'medcat.utils.relation_extraction', 'medcat.utils.saving', 'medcat.utils.regression', 'medcat.stats'], + python_requires='>=3.9', # 3.8 is EoL install_requires=install_requires, include_package_data=True, package_data={"medcat": ["install_requires.txt"]}, classifiers=[ "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",