Skip to content

Commit 00cf1d3

Browse files
authored
chore: Removing Python 3.4 support (#389)
1 parent 7078e96 commit 00cf1d3

File tree

3 files changed

+6
-19
lines changed

3 files changed

+6
-19
lines changed

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[![Build Status](https://travis-ci.org/firebase/firebase-admin-python.svg?branch=master)](https://travis-ci.org/firebase/firebase-admin-python)
2+
[![Python](https://img.shields.io/pypi/pyversions/firebase-admin.svg)](https://pypi.org/project/firebase-admin/)
3+
[![Version](https://img.shields.io/pypi/v/firebase-admin.svg)](https://pypi.org/project/firebase-admin/)
24

35
# Firebase Admin Python SDK
46

@@ -41,7 +43,7 @@ requests, code review feedback, and also pull requests.
4143

4244
## Supported Python Versions
4345

44-
We currently support Python 3.4+. Firebase Admin Python SDK is also tested on
46+
We currently support Python 3.5+. Firebase Admin Python SDK is also tested on
4547
PyPy and [Google App Engine](https://cloud.google.com/appengine/) environments.
4648

4749

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323

2424
(major, minor) = (sys.version_info.major, sys.version_info.minor)
25-
if major != 3 or minor < 4:
26-
print('firebase_admin requires python >= 3.4', file=sys.stderr)
25+
if major != 3 or minor < 5:
26+
print('firebase_admin requires python >= 3.5', file=sys.stderr)
2727
sys.exit(1)
2828

2929
# Read in the package metadata per recommendations from:
@@ -55,13 +55,12 @@
5555
keywords='firebase cloud development',
5656
install_requires=install_requires,
5757
packages=['firebase_admin'],
58-
python_requires='>=3.4',
58+
python_requires='>=3.5',
5959
classifiers=[
6060
'Development Status :: 5 - Production/Stable',
6161
'Intended Audience :: Developers',
6262
'Topic :: Software Development :: Build Tools',
6363
'Programming Language :: Python :: 3',
64-
'Programming Language :: Python :: 3.4',
6564
'Programming Language :: Python :: 3.5',
6665
'Programming Language :: Python :: 3.6',
6766
'Programming Language :: Python :: 3.7',

0 commit comments

Comments
 (0)