-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee2a16d
commit 72b2ee4
Showing
1 changed file
with
6 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,7 +63,11 @@ def main(): | |
"smtp": ["validate-email"], | ||
"targetsmart": ["xmltodict"], | ||
"twilio": ["twilio"], | ||
"ssh": ["sshtunnel", "psycopg2-binary>=2.9.9", "sqlalchemy >= 1.4.22, != 1.4.33, < 2.0.0"] | ||
"ssh": [ | ||
"sshtunnel", | ||
"psycopg2-binary>=2.9.9", | ||
"sqlalchemy >= 1.4.22, != 1.4.33, < 2.0.0", | ||
], | ||
} | ||
extras_require["all"] = sorted({lib for libs in extras_require.values() for lib in libs}) | ||
else: | ||
|
@@ -78,7 +82,7 @@ def main(): | |
|
||
setup( | ||
name="parsons", | ||
version="3.1.0", | ||
version="3.2.0", | ||
author="The Movement Cooperative", | ||
author_email="[email protected]", | ||
url="https://github.com/move-coop/parsons", | ||
|