Skip to content

Commit b0fddb9

Browse files
committed
Fixing documentation link on Pypi
1 parent 1a70449 commit b0fddb9

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,8 @@ The full documentation for DALPy is available [here](https://dalpy-developers.gi
9696

9797
## Sample Usage
9898

99-
To view sample assignments using DALPy browse the [DALPy sample problems repository](https://github.com/DALPy-Developers/DALPy-Sample-Problems) on GitHub.
99+
To view sample assignments using DALPy browse the [DALPy sample problems repository](https://github.com/DALPy-Developers/DALPy-Sample-Problems) on GitHub.
100+
101+
## Notes
102+
103+
This project was formerly known as [Cormen-Lib](https://pypi.org/project/cormen-lib/).

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dalpy
3-
version = 1.0.0
3+
version = 1.0.1
44
author = Eitan Joseph and Chami Lamelas
55
author_email = eitanjoseph@brandeis.edu, slamelas@brandeis.edu
66
description = A Python module for administering and grading assignments in data structures and algorithms courses.
@@ -9,7 +9,7 @@ long_description_content_type = text/markdown
99
url = https://github.com/DALPy-Developers/DALPy
1010
project_urls =
1111
Source Code = https://github.com/DALPy-Developers/DALPy
12-
Documentation = https://github.com/DALPy-Developers/DALPy
12+
Documentation = https://dalpy-developers.github.io/DALPy/
1313
Bug Tracker = https://github.com/DALPy-Developers/DALPy/issues
1414
Sample Usage = https://github.com/DALPy-Developers/DALPy-Sample-Problems
1515
classifiers =

tests/test_utils_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def fnc_that_modifies_second(x, y):
144144
assert '2nd' in e.args[0], e.args[0]
145145

146146

147-
class CormenEqualsTest(unittest.TestCase):
147+
class DALPyEqualsTest(unittest.TestCase):
148148

149149
def test_floats(self):
150150
x = math.sqrt(7)*math.sqrt(7)
@@ -154,4 +154,4 @@ def test_floats(self):
154154

155155

156156
if __name__ == '__main__':
157-
build_and_run_watched_suite([WarningTest, GenericTesterTest, CormenEqualsTest])
157+
build_and_run_watched_suite([WarningTest, GenericTesterTest, DALPyEqualsTest])

0 commit comments

Comments
 (0)