From d3873109d6b52798cf87663610791c0580010a00 Mon Sep 17 00:00:00 2001 From: Sami Virpioja Date: Wed, 6 Sep 2023 09:51:39 +0300 Subject: [PATCH] remove py3.6 support and tests --- .github/workflows/ci.yml | 4 ---- requirements-py36.txt | 24 ------------------------ setup.py | 2 +- 3 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 requirements-py36.txt diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d332686..c0b8889 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,10 +20,6 @@ jobs: os: [ubuntu-latest] python-version: ["3.7", "3.8", "3.9", "3.10"] requirements-file: ["requirements.txt"] - include: - - os: ubuntu-20.04 - python-version: "3.6" - requirements-file: "requirements-py36.txt" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 diff --git a/requirements-py36.txt b/requirements-py36.txt deleted file mode 100644 index 833f1e3..0000000 --- a/requirements-py36.txt +++ /dev/null @@ -1,24 +0,0 @@ -setuptools==59.6.0 -setuptools_scm==6.4.2 -opustools -jieba>=0.42 -beautifulsoup4>=4.8.2 -graphviz>=0.16 -langid==1.1.6 -matplotlib>=3.3.0 -opus-fast-mosestokenizer==0.0.8.3 -pandas>=1.0.0 -pycld2==0.41 -xxhash==3.2.0 -rapidfuzz>=2.0.5 -regex>=2019.11.1 -requests>=2.22.0 -ruamel.yaml>=0.15.0 -scikit-learn>=0.24.0 -sentence-splitter==1.4 -tqdm>=4.38.0 -fasttext==0.9.2 -mecab-python3==1.0.5 -unidic-lite==1.0.8 -subword-nmt==0.3.8 -Morfessor==2.0.6 diff --git a/setup.py b/setup.py index 92c25f6..f567c42 100644 --- a/setup.py +++ b/setup.py @@ -84,5 +84,5 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ), - python_requires=">=3.6", + python_requires=">=3.7", )