Skip to content

Commit 4f7d336

Browse files
committed
HTTP -> HTTPS
1 parent 548465c commit 4f7d336

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
*/__pycache__/
44
build/
55
dist/
6-
explorecourses.egg-info/
6+
explorecourses.egg-info/
7+
.eggs/

explorecourses/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Attribute, Tag, Schedule, LearningObjective, \
44
Section
55

6-
__version__ = '0.1.0'
6+
__version__ = '1.0.4'
77

88
__author__ = 'Jeremy Ephron <[email protected]>'
99

explorecourses/course_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class CourseConnection():
1616
1717
"""
1818

19-
_URL = "http://explorecourses.stanford.edu/"
19+
_URL = "https://explorecourses.stanford.edu/"
2020

2121
def __init__(self):
2222
"""

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[aliases]
2+
test=pytest

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
install_requires=[
1313
'requests>=2'
1414
],
15+
setup_requires=["pytest-runner"],
16+
tests_require=["pytest"],
1517
classifiers=(
1618
'Programming Language :: Python',
1719
'Programming Language :: Python :: 3',

0 commit comments

Comments
 (0)