Skip to content

Commit

Permalink
rtd build fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
snarfed committed Nov 21, 2016
1 parent fc8bca8 commit 8a3738b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
7 changes: 5 additions & 2 deletions appengine_config.py
@@ -1,7 +1,10 @@
# Load packages from virtualenv
# https://cloud.google.com/appengine/docs/python/tools/libraries27#vendoring
from google.appengine.ext import vendor
vendor.add('local')
try:
vendor.add('local')
except ValueError as e:
import logging
logging.warning("Couldn't set up App Engine vendor virtualenv! %s", e)

from granary.appengine_config import *

Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Expand Up @@ -4,7 +4,8 @@ html2text
jinja2
mf2py>=0.2.7
mf2util>=0.5.0
oauth-dropins>=1.5
-e git+https://github.com/snarfed/oauth-dropins.git@rtd#egg=oauth_dropins
#oauth-dropins>=1.5
requests>=2.10.0
requests-toolbelt>=0.6.2
brevity>=0.2.11
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Expand Up @@ -6,8 +6,6 @@
Based on https://github.com/pypa/sampleproject/blob/master/setup.py
"""
import unittest

from setuptools import setup, find_packages
from setuptools.command.test import ScanningLoader

Expand Down

0 comments on commit 8a3738b

Please sign in to comment.