From c21659eb98418d7cbc89849b2347218d9f0dd9d7 Mon Sep 17 00:00:00 2001 From: Olivier Mangin Date: Sat, 7 Nov 2020 17:27:58 -0800 Subject: [PATCH] Update dependencies and test to drop python 3.5 support. The reason for dropping python 3.5 support is that it is not compatible with the feedparser dependency. The version is anyway not supported any more (security fixes stopped on 2020/09). --- .travis.yml | 5 ----- setup.py | 3 +-- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9f84fc9..3792177 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,11 +21,6 @@ matrix: - source env/bin/activate # Mock tests (with mock API) - - os: linux - language: python - python: 3.5 - env: - - TO_TEST=TEST_MOCK - os: linux language: python python: 3.6 diff --git a/setup.py b/setup.py index 18c64cf..f5e45d2 100644 --- a/setup.py +++ b/setup.py @@ -45,16 +45,15 @@ setup( }, include_package_data=True, - install_requires=['pyyaml', 'bibtexparser>=1.0', 'python-dateutil', 'six', 'requests', 'configobj', 'beautifulsoup4', 'feedparser'], extras_require={'autocompletion': ['argcomplete'], }, + python_requires='>=3.6', classifiers=[ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research',