Skip to content

Commit 9b6955f

Browse files
committed
v0.6.1
1 parent 1506302 commit 9b6955f

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
0.7.0 (Planned)
22
[+] Added mock.MockQualtrics object (for unit testing code that uses pyqualtrics.Qualtrics class)
33

4+
0.6.1
5+
[*] Fixed problem with installation
6+
47
0.6.0
58
[+] More tests
69
[*] importPanel API call is back to normal

Release Procedure.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,13 @@ Checklist for new release
33
2. Update CHANGELOG.txt
44
3. Update version in setup.py
55
4. Push all changes to github
6-
5. Test installation on a different machine
7-
`python setup.py install`
6+
5. Test installation on a different machine in a fresh virtual environment
7+
```bash
8+
mkvirtualenv qualtrics
9+
python setup.py install
10+
deactivate
11+
rmvirtualenv qualtrics
12+
```
813
6. Run unittests on a different machine
914
`python setup.py test`
1015
7. Make a release/tag

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,10 @@
2525
# ez_setup.use_setuptools(version="18.2")
2626

2727
from setuptools import setup, find_packages
28-
from pyqualtrics import __version__
2928

3029
setup(
3130
name="pyqualtrics",
32-
version=__version__,
31+
version="0.6.1",
3332
author="Alex Vyushkov",
3433
author_email="[email protected]",
3534
description="Unofficial python SDK for Qualtrics API",

0 commit comments

Comments
 (0)