-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix sqlalchemy recipe build errors * Bump sqlalchemy to 1.3.3
- Loading branch information
1 parent
545413e
commit 9c819c6
Showing
2 changed files
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
diff --git a/setup.py b/setup.py | ||
index 09b524c..1e65772 100644 | ||
--- a/setup.py | ||
+++ b/setup.py | ||
@@ -125,6 +125,7 @@ def run_setup(with_cext): | ||
setup(name="SQLAlchemy", | ||
version=VERSION, | ||
description="Database Abstraction Library", | ||
+ zip_safe=False, | ||
author="Mike Bayer", | ||
author_email="[email protected]", | ||
url="http://www.sqlalchemy.org", | ||
--- a/setup.py 2019-04-15 17:45:03.000000000 +0200 | ||
+++ b/setup.py 2019-04-16 20:12:19.056710749 +0200 | ||
@@ -145,6 +145,7 @@ | ||
name="SQLAlchemy", | ||
version=VERSION, | ||
description="Database Abstraction Library", | ||
+ zip_safe=False, | ||
author="Mike Bayer", | ||
author_email="[email protected]", | ||
url="http://www.sqlalchemy.org", |