Skip to content

Commit f46a9ae

Browse files
committed
25th Commit - Had to update dependancies for PyPi, pushed version 1.1.0 out to PyPi.
1 parent 7f3489d commit f46a9ae

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.gitignore

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.DS_Store
2-
build/
32
__pycache__/
43
Contacts/__pycache__/
54
Survey/__pycache__/
65
Setup/__pycache__/
7-
dist/
86
QualtricsAPI.egg-info
9-
setup.py
10-
pipfile.lock
117
/documentation
8+
Pipfile
9+
Pipfile.lock
10+
/dist
11+
/build

QualtricsAPI/Survey/responses.py

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import json
44
import io
55
import pandas as pd
6-
import glob
76
from QualtricsAPI.Setup import Credentials
87
from QualtricsAPI.JSON import Parser
98
from QualtricsAPI.Exceptions import ServerError

info/PackageStructure.txt

+5
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,8 @@ QualtricsAPI/ Root Directory
2424
__init__.py Initialize the Tests Sub-Package
2525
test.py Module for Testing
2626
...
27+
28+
Dependancies:
29+
pandas = ">=0.23.4"
30+
numpy = ">=1.16"
31+
requests = ">=2.21.0"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name='QualtricsAPI',
8-
version='0.0.6',
8+
version='0.1.1',
99
author='Jeremy A. Seibert',
1010
author_email='[email protected]',
1111
description="This is wrapper is a convenient way for python users to ingest, or upload their data from Qualtrics to their development environment.",

0 commit comments

Comments
 (0)