From 2e9ef9e8c330a9bbf25f22a1e726ed44fc5532a1 Mon Sep 17 00:00:00 2001 From: Alexander Vyushkov Date: Fri, 13 Apr 2018 11:47:38 -0400 Subject: [PATCH] Documentation update --- CHANGELOG.txt | 3 +++ README.md | 2 +- setup.py | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 2be7749..5f64518 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,9 @@ Unreleased [+] Added mock.MockQualtrics object (for unit testing code that uses pyqualtrics.Qualtrics class) +0.6.8 - 2017-12-29 + [*] Updated classifiers in setup.py to reflect Python 3.5 support + 0.6.7 - 2017-09-26 [+] Added error messages for getSurvey if it fails diff --git a/README.md b/README.md index febb74f..5437900 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ My ultimate goal is cover all API calls. Some of them (subscribe, createUser etc # System requirements -Python 2.7 only. I do intent to add support for Python 3.x in near future. +Python 2.7 or Python 3.5 Requires setuptools. It might be already installed on your system, but if not you can use `ez_setup.py` script to install setuptools. diff --git a/setup.py b/setup.py index bb3c67b..16909ef 100644 --- a/setup.py +++ b/setup.py @@ -53,6 +53,8 @@ "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.5", "Topic :: Software Development :: Libraries :: Python Modules", ], )