File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 110.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+
470.6.0
58 [+] More tests
69 [*] importPanel API call is back to normal
Original file line number Diff line number Diff line change @@ -3,8 +3,13 @@ Checklist for new release
332. Update CHANGELOG.txt
443. Update version in setup.py
554. 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+ ```
8136. Run unittests on a different machine
914`python setup.py test`
10157. Make a release/tag
Original file line number Diff line number Diff line change 2525# ez_setup.use_setuptools(version="18.2")
2626
2727from setuptools import setup , find_packages
28- from pyqualtrics import __version__
2928
3029setup (
3130 name = "pyqualtrics" ,
32- version = __version__ ,
31+ version = "0.6.1" ,
3332 author = "Alex Vyushkov" ,
34333534 description = "Unofficial python SDK for Qualtrics API" ,
You can’t perform that action at this time.
0 commit comments