From 6b24fb0b5c4acd9c57c91956c788de932e9297cc Mon Sep 17 00:00:00 2001 From: Richard Tibbles Date: Sun, 11 Jun 2023 21:04:06 -0700 Subject: [PATCH] Drop Python 3.4 and 3.5 support. --- .github/workflows/pythontest.yml | 2 +- js/package.json | 2 +- setup.py | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pythontest.yml b/.github/workflows/pythontest.yml index 070746c..f3c7e68 100644 --- a/.github/workflows/pythontest.yml +++ b/.github/workflows/pythontest.yml @@ -23,7 +23,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8] + python-version: [2.7, 3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/js/package.json b/js/package.json index 515d4d7..fc6481b 100644 --- a/js/package.json +++ b/js/package.json @@ -27,5 +27,5 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, - "version": "0.1.43" + "version": "0.2.0" } \ No newline at end of file diff --git a/setup.py b/setup.py index 7b47d44..c43182f 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name="le-utils", packages=find_packages(), - version="0.1.43", + version="0.2.0", description="LE-Utils contains shared constants used in Kolibri, Ricecooker, and Kolibri Studio.", long_description=long_description, long_description_content_type="text/markdown", @@ -33,4 +33,5 @@ ], author="Learning Equality", author_email="info@learningequality.org", + python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <3.12", )