diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 8cec7e1d9..000000000 --- a/.travis.yml +++ /dev/null @@ -1,14 +0,0 @@ -language: python -python: - - "3.4" - -before_install: - - nvm install 8 && npm install -g firebase-tools -script: - - pytest - - firebase emulators:exec --only database --project fake-project-id 'pytest integration/test_db.py' -cache: - pip: true - npm: true - directories: - - $HOME/.cache/firebase/emulators diff --git a/README.md b/README.md index 8e9efd0ee..7f33af68b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ [![Build Status](https://travis-ci.org/firebase/firebase-admin-python.svg?branch=master)](https://travis-ci.org/firebase/firebase-admin-python) +[![Python](https://img.shields.io/pypi/pyversions/firebase-admin.svg)](https://pypi.org/project/firebase-admin/) +[![Version](https://img.shields.io/pypi/v/firebase-admin.svg)](https://pypi.org/project/firebase-admin/) # Firebase Admin Python SDK @@ -41,7 +43,7 @@ requests, code review feedback, and also pull requests. ## Supported Python Versions -We currently support Python 3.4+. Firebase Admin Python SDK is also tested on +We currently support Python 3.5+. Firebase Admin Python SDK is also tested on PyPy and [Google App Engine](https://cloud.google.com/appengine/) environments. diff --git a/setup.py b/setup.py index 43da5eb85..0ebcc3455 100644 --- a/setup.py +++ b/setup.py @@ -22,8 +22,8 @@ (major, minor) = (sys.version_info.major, sys.version_info.minor) -if major != 3 or minor < 4: - print('firebase_admin requires python >= 3.4', file=sys.stderr) +if major != 3 or minor < 5: + print('firebase_admin requires python >= 3.5', file=sys.stderr) sys.exit(1) # Read in the package metadata per recommendations from: @@ -55,13 +55,12 @@ keywords='firebase cloud development', install_requires=install_requires, packages=['firebase_admin'], - python_requires='>=3.4', + python_requires='>=3.5', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Topic :: Software Development :: Build Tools', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7',