From b90044b86c0be43318625f521b1dc83800687e3c Mon Sep 17 00:00:00 2001 From: Jensun Ravichandran Date: Fri, 18 Jun 2021 19:20:54 +0200 Subject: [PATCH] fix: python is python3.9 --- .github/workflows/pythonapp.yml | 4 ++-- setup.py | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 77c9e1e..419771a 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -16,10 +16,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 + - name: Set up Python 3.9 uses: actions/setup-python@v1 with: - python-version: 3.8 + python-version: 3.9 - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/setup.py b/setup.py index 1e33cda..beccf02 100644 --- a/setup.py +++ b/setup.py @@ -59,6 +59,7 @@ setup( url=PROJECT_URL, download_url=DOWNLOAD_URL, license="MIT", + python_requires=">=3.9", install_requires=INSTALL_REQUIRES, extras_require={ "datasets": DATASETS, @@ -76,9 +77,6 @@ setup( "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Operating System :: OS Independent", "Topic :: Scientific/Engineering :: Artificial Intelligence",