From cff665e8ad6581a922cdfce501aeab6540dc1ad5 Mon Sep 17 00:00:00 2001 From: Valera Rozuvan Date: Mon, 17 Jan 2022 14:16:36 +0200 Subject: [PATCH 1/2] drop python 3.2 Python 3.2 is not supported by some of the modules used in this project. So the build fails for that specific version. It was discussed in https://github.com/tadeck/onetimepass/pull/22 , and agreed that dropping 3.2 is the best option. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 244d37f..ea0e072 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: python python: - "2.6" - "2.7" - - "3.2" - "3.3" - "3.4" - "3.5.0b3" From 01bb6b0d04d3d524283f210354acc34a52845b4b Mon Sep 17 00:00:00 2001 From: Valera Rozuvan Date: Mon, 17 Jan 2022 18:06:58 +0200 Subject: [PATCH 2/2] Update setup.py --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index cb769e8..2abcc59 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,6 @@ 'Operating System :: OS Independent', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Topic :: Internet :: WWW/HTTP :: Session',