Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.0.0 #22

Merged
merged 45 commits into from
May 27, 2017
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
78ad44b
added support for optional args for parity with newest C library
dmalan Apr 9, 2017
ea74fd7
deploying on master and simplified makefile
Apr 14, 2017
406ee20
Merge pull request #13 from cs50/deployment
Apr 14, 2017
a6a43ed
disabled tag builds
Apr 18, 2017
b83c6a5
Merge pull request #14 from cs50/tag-builds
Apr 18, 2017
d8a74a3
returning None for EOF, updated comments
dmalan Apr 29, 2017
9f7dca1
added eprint
dmalan Apr 29, 2017
bc1483a
clarified eprint's comments
dmalan Apr 29, 2017
bfbe74d
configured slack notifications [skip ci]
May 12, 2017
a94b031
deploying using pypi integration [skip ci]
May 12, 2017
d6ed4b4
Merge pull request #18 from cs50/pypi/slack
May 12, 2017
93fa599
removed makefile and updated readme
May 12, 2017
19b33c0
added dependency
dmalan May 20, 2017
508937a
trying support for all paramstyles
dmalan May 20, 2017
ab5d836
added support for expandable parameters
dmalan May 21, 2017
64c1a04
removed sqlparse
dmalan May 21, 2017
7b69487
Merge pull request #17 from cs50/optional-args
dmalan May 21, 2017
d626967
Merge pull request #19 from cs50/expandable-parameters
dmalan May 21, 2017
71dea16
fixed support for PostgreSQL
dmalan May 21, 2017
b63f521
added logging
dmalan May 21, 2017
f2732cd
Merge pull request #21 from cs50/logging
dmalan May 21, 2017
bf2b82a
upped version
dmalan May 21, 2017
be16156
fixed eprint for Python 2
dmalan May 21, 2017
d9c9aba
Merge branch 'develop' into eprint
dmalan May 21, 2017
5455ee4
Merge pull request #16 from cs50/eprint
dmalan May 21, 2017
f98662b
reorganized directories
dmalan May 21, 2017
cc1f840
fixed naming conventions, fixed exception handling
dmalan May 25, 2017
a115e9a
no longer reraising RuntimeErrors
dmalan May 25, 2017
0032a54
upped version
dmalan May 25, 2017
7ef9d6d
no longer reraising exceptions
dmalan May 25, 2017
2230609
added comments
dmalan May 25, 2017
2955b7b
Merge pull request #24 from cs50/exception-changes
dmalan May 25, 2017
41f1027
ignored *.pyc and *.db
May 27, 2017
a1bbaab
exiting with error code if sql test failed
May 27, 2017
f91a93e
suppressed unknown table in mysql's tearDownClass
May 27, 2017
d3c25fc
dropped postgres password for travis
May 27, 2017
c3253f9
running sql tests against python 2 and 3 on travis
May 27, 2017
2a07bc8
removed __pycache__
May 27, 2017
77dbb65
fixed package path
May 27, 2017
4bc77ab
fixed sqltests.py path
May 27, 2017
a45a3ec
fixed unknown table suppression in sql tests
May 27, 2017
f7cf369
simplified sqltests
May 27, 2017
5e2b03e
added test for multi-insert statements
May 27, 2017
1586f70
Merge pull request #25 from cs50/sqltests
May 27, 2017
da85752
decreased version
May 27, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
"Topic :: Software Development :: Libraries :: Python Modules"
],
description="CS50 library for Python",
install_requires=["SQLAlchemy"],
install_requires=["SQLAlchemy", "sqlparse"],
keywords="cs50",
name="cs50",
packages=["cs50"],