Skip to content

Commit ee4a47d

Browse files
committed
v0.2.0
1 parent 773c50b commit ee4a47d

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

CHANGELOG.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.2.0 01/05/2016
2+
* Improved test coverage up to 80%
3+
* importPanel function now automatically computes Email, LastName, FirstName and ExternalRef parameters
4+
* Added command line tool "qualtrics"
5+
16
0.1.0: 01/03/2016 - Initial version
27
* createPanel
38
* deletePanel

Development Notes.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Checklist for new release
2+
1. Run unittests
3+
2. Update CHANGELOG.txt
4+
3. Update version in setup.py
5+
4. Push all changes to github
6+
5. Make a release/tag
7+
6. Test installation on a different machine
8+
7. Run unittests on a different machine
9+
8. Run `setup.py sdist bdist upload` command

TODO.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* Release v0.2.0
12
* Write tests for failing sendSurveyToIndividual, getDistributions,
23
addRecipient, getRecipient and getPanelMemberCount functions
34
* Write "how to run tests" document

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
setup(
3030
name="pyqualtrics",
31-
version="0.2.0a",
31+
version="0.2.0",
3232
author="Alex Vyushkov",
3333
author_email="[email protected]",
3434
description="Unofficial python SDK for Qualtrics API",
@@ -37,7 +37,7 @@
3737
url="https://github.com/Baguage/pyqualtrics",
3838
# find_packages() takes a source directory and two lists of package name patterns to exclude and include.
3939
# If omitted, the source directory defaults to the same directory as the setup script.
40-
packages=find_packages(), # https://pythonhosted.org/setuptools/setuptools.html#using-find-packages
40+
packages=find_packages(exclude=["examples"]), # https://pythonhosted.org/setuptools/setuptools.html#using-find-packages
4141
install_requires=["requests"],
4242
scripts=['bin/qualtrics.cmd', 'bin/qualtrics'],
4343
test_suite="pyqualtrics.tests",

0 commit comments

Comments
 (0)