Skip to content

Commit

Permalink
Merge pull request #59 from datopian/fix/pin-flask-classful-version
Browse files Browse the repository at this point in the history
Set specific GitHub revision to pull for flask-classful in setup.py
  • Loading branch information
Shahar Evron authored Nov 25, 2020
2 parents 466df8c + 85f9adf commit c7bdd40
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 180 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.1
0.2.2
177 changes: 0 additions & 177 deletions giftless/client.py

This file was deleted.

7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,20 @@
description='A Git LFS Server implementation in Python with support for pluggable backends',
author='Shahar Evron',
author_email='[email protected]',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'figcan',
'flask',
'flask-classful',
'flask-marshmallow',
'marshmallow-enum',
'pyyaml',
'PyJWT',
'webargs',
'python-dotenv',
'typing-extensions'
'typing-extensions',
# Pull unreleased version of Flask-classful directly from GitHub
'flask-classful @ https://codeload.github.com/teracyhq/flask-classful/tar.gz/3bbab31705b4aa2903e7e62aa8c5ee70a1e6d789#egg=flask-classful-0.15.0',
],
package_data={}
)

0 comments on commit c7bdd40

Please sign in to comment.