diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index c07b30a82f97..9e41350612fc 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -286,19 +286,18 @@ Supported Python Versions We support: -- `Python 2.7`_ - `Python 3.4`_ - `Python 3.5`_ - `Python 3.6`_ -.. _Python 2.7: https://docs.python.org/2.7/ .. _Python 3.4: https://docs.python.org/3.4/ .. _Python 3.5: https://docs.python.org/3.5/ .. _Python 3.6: https://docs.python.org/3.6/ -Supported versions can be found in our ``nox.py`` `config`_. -.. _config: https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/nox.py +Supported versions can be found in our ``noxfile.py`` `config`_. + +.. _config: https://github.com/googleapis/google-cloud-python/blob/master/noxfile.py We explicitly decided not to support `Python 2.5`_ due to `decreased usage`_ and lack of continuous integration `support`_. @@ -310,6 +309,8 @@ and lack of continuous integration `support`_. We have `dropped 2.6`_ as a supported version as well since Python 2.6 is no longer supported by the core development team. +Python 2.7 support is deprecated. All code changes should maintain Python 2.7 compatibility until January 1, 2020. + We also explicitly decided to support Python 3 beginning with version 3.4. Reasons for this include: @@ -321,7 +322,7 @@ We also explicitly decided to support Python 3 beginning with version .. _prominent: https://docs.djangoproject.com/en/1.9/faq/install/#what-python-version-can-i-use-with-django .. _projects: http://flask.pocoo.org/docs/0.10/python3/ .. _Unicode literal support: https://www.python.org/dev/peps/pep-0414/ -.. _dropped 2.6: https://github.com/GoogleCloudPlatform/google-cloud-python/issues/995 +.. _dropped 2.6: https://github.com/googleapis/google-cloud-python/issues/995 ********** Versioning diff --git a/api_core/README.rst b/api_core/README.rst index b47526770afd..f0caaaff0e4d 100644 --- a/api_core/README.rst +++ b/api_core/README.rst @@ -12,3 +12,12 @@ common helpers used by all Google API clients. For more information, see the .. |versions| image:: https://img.shields.io/pypi/pyversions/google-api_core.svg :target: https://pypi.org/project/google-api_core/ .. _documentation: https://googlecloudplatform.github.io/google-cloud-python/latest/core/ + + +Supported Python Versions +------------------------- +Python >= 3.4 + +Deprecated Python Versions +-------------------------- +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. \ No newline at end of file diff --git a/api_core/setup.py b/api_core/setup.py index 578e142562ad..847d6edfed92 100644 --- a/api_core/setup.py +++ b/api_core/setup.py @@ -93,6 +93,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/asset/README.rst b/asset/README.rst index ffd60dec9231..6498b3413fe1 100644 --- a/asset/README.rst +++ b/asset/README.rst @@ -47,6 +47,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/asset/setup.py b/asset/setup.py index f256aed9a8c9..bbe55d66eb83 100644 --- a/asset/setup.py +++ b/asset/setup.py @@ -80,6 +80,7 @@ packages=packages, namespace_packages=namespaces, install_requires=dependencies, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/automl/README.rst b/automl/README.rst index 638ad90c5624..82535f51ef6e 100644 --- a/automl/README.rst +++ b/automl/README.rst @@ -50,6 +50,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/automl/setup.py b/automl/setup.py index 23136b773250..3c5573943978 100644 --- a/automl/setup.py +++ b/automl/setup.py @@ -61,6 +61,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -68,6 +69,7 @@ packages=packages, namespace_packages=namespaces, install_requires=dependencies, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/bigquery/README.rst b/bigquery/README.rst index 7d5fbb067071..4a237b3fa6ab 100644 --- a/bigquery/README.rst +++ b/bigquery/README.rst @@ -50,6 +50,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/bigquery/setup.py b/bigquery/setup.py index 1e92988a2d78..d835b10c669f 100644 --- a/bigquery/setup.py +++ b/bigquery/setup.py @@ -90,6 +90,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/bigquery_datatransfer/README.rst b/bigquery_datatransfer/README.rst index 301ad2a8d641..3ffc1c4a7a06 100644 --- a/bigquery_datatransfer/README.rst +++ b/bigquery_datatransfer/README.rst @@ -46,6 +46,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/bigquery_datatransfer/setup.py b/bigquery_datatransfer/setup.py index 4eaf596b142c..47354152a87b 100644 --- a/bigquery_datatransfer/setup.py +++ b/bigquery_datatransfer/setup.py @@ -75,6 +75,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -83,6 +84,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/bigquery_storage/README.rst b/bigquery_storage/README.rst index 22c9292c1023..d367d0ea0671 100644 --- a/bigquery_storage/README.rst +++ b/bigquery_storage/README.rst @@ -40,6 +40,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/bigquery_storage/setup.py b/bigquery_storage/setup.py index b968c56114c3..f46b6e83a257 100644 --- a/bigquery_storage/setup.py +++ b/bigquery_storage/setup.py @@ -75,6 +75,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/bigtable/README.rst b/bigtable/README.rst index 24632069f1f6..8835e2a3bbcf 100644 --- a/bigtable/README.rst +++ b/bigtable/README.rst @@ -49,6 +49,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/bigtable/setup.py b/bigtable/setup.py index 2983341a25bb..45999b43cb52 100644 --- a/bigtable/setup.py +++ b/bigtable/setup.py @@ -77,6 +77,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -85,6 +86,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/container/README.rst b/container/README.rst index a07e796e9cfb..be623dfed55a 100644 --- a/container/README.rst +++ b/container/README.rst @@ -46,6 +46,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/container/setup.py b/container/setup.py index a3dc98d859cf..2e82c6ab0345 100644 --- a/container/setup.py +++ b/container/setup.py @@ -75,6 +75,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -83,6 +84,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/core/README.rst b/core/README.rst index e43e41414fad..28a78c9ac87e 100644 --- a/core/README.rst +++ b/core/README.rst @@ -29,3 +29,11 @@ to `Python Development Environment Setup Guide`_ for Google Cloud Platform. .. _Python Development Environment Setup Guide: https://cloud.google.com/python/setup + +Supported Python Versions +------------------------- +Python >= 3.4 + +Deprecated Python Versions +-------------------------- +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. diff --git a/core/setup.py b/core/setup.py index ae6f12b622b1..eca66885f4c1 100644 --- a/core/setup.py +++ b/core/setup.py @@ -72,6 +72,7 @@ "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + 'Programming Language :: Python :: 3.7', "Operating System :: OS Independent", "Topic :: Internet", ], @@ -80,6 +81,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/dataproc/README.rst b/dataproc/README.rst index 6380c43c13e9..da632ece1c0d 100644 --- a/dataproc/README.rst +++ b/dataproc/README.rst @@ -47,6 +47,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/dataproc/setup.py b/dataproc/setup.py index 811dfd060f61..dcd48d65ff50 100644 --- a/dataproc/setup.py +++ b/dataproc/setup.py @@ -75,6 +75,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -83,6 +84,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/datastore/README.rst b/datastore/README.rst index 575585f756e9..dbf58b858160 100644 --- a/datastore/README.rst +++ b/datastore/README.rst @@ -51,6 +51,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/datastore/setup.py b/datastore/setup.py index 6dffb2115b48..0cda00f825f4 100644 --- a/datastore/setup.py +++ b/datastore/setup.py @@ -76,6 +76,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -84,6 +85,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/dlp/README.rst b/dlp/README.rst index af5a7009d530..8cd87612cc02 100644 --- a/dlp/README.rst +++ b/dlp/README.rst @@ -49,6 +49,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/dlp/setup.py b/dlp/setup.py index 9988754946fe..7ed624698f80 100644 --- a/dlp/setup.py +++ b/dlp/setup.py @@ -63,6 +63,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -70,6 +71,7 @@ packages=packages, namespace_packages=namespaces, install_requires=dependencies, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/dns/README.rst b/dns/README.rst index 9cb646046fb7..f725f4b58441 100644 --- a/dns/README.rst +++ b/dns/README.rst @@ -48,6 +48,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/dns/setup.py b/dns/setup.py index 595554bb07c5..ae07ce364d42 100644 --- a/dns/setup.py +++ b/dns/setup.py @@ -76,6 +76,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -84,6 +85,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/error_reporting/README.rst b/error_reporting/README.rst index 0b28b3298ee4..872f8b0358f2 100644 --- a/error_reporting/README.rst +++ b/error_reporting/README.rst @@ -50,6 +50,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/error_reporting/setup.py b/error_reporting/setup.py index 1fe16f1286d2..86e35d02f2c6 100644 --- a/error_reporting/setup.py +++ b/error_reporting/setup.py @@ -75,6 +75,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -83,6 +84,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/firestore/README.rst b/firestore/README.rst index d7e3756eaeea..ffc185e8acd9 100644 --- a/firestore/README.rst +++ b/firestore/README.rst @@ -53,6 +53,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/firestore/setup.py b/firestore/setup.py index 0c39df961f3a..d48763ac4613 100644 --- a/firestore/setup.py +++ b/firestore/setup.py @@ -77,6 +77,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -85,6 +86,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/iot/README.rst b/iot/README.rst index 392f553e062b..897a36260ebc 100644 --- a/iot/README.rst +++ b/iot/README.rst @@ -48,6 +48,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/iot/setup.py b/iot/setup.py index 3c4e409cd2c6..4066b01016cc 100644 --- a/iot/setup.py +++ b/iot/setup.py @@ -62,6 +62,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -69,6 +70,7 @@ packages=packages, namespace_packages=namespaces, install_requires=dependencies, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/kms/README.rst b/kms/README.rst index bf4df277795b..b333aaf662bb 100644 --- a/kms/README.rst +++ b/kms/README.rst @@ -49,6 +49,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/kms/setup.py b/kms/setup.py index 686c1635128f..1708f481e9d4 100644 --- a/kms/setup.py +++ b/kms/setup.py @@ -64,6 +64,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -71,6 +72,7 @@ packages=packages, namespace_packages=namespaces, install_requires=dependencies, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/language/README.rst b/language/README.rst index 65dd6687cf8d..bbd64839faa3 100644 --- a/language/README.rst +++ b/language/README.rst @@ -60,6 +60,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/language/setup.py b/language/setup.py index 0abb0d31e2b0..6c6803a2de4a 100644 --- a/language/setup.py +++ b/language/setup.py @@ -76,6 +76,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -84,6 +85,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/logging/README.rst b/logging/README.rst index a0bc55247761..78635f780b53 100644 --- a/logging/README.rst +++ b/logging/README.rst @@ -46,6 +46,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/logging/setup.py b/logging/setup.py index d6f43390ac19..8c58cd0ab45d 100644 --- a/logging/setup.py +++ b/logging/setup.py @@ -84,6 +84,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/monitoring/README.rst b/monitoring/README.rst index af9476a4d605..36a6277d437a 100644 --- a/monitoring/README.rst +++ b/monitoring/README.rst @@ -48,6 +48,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/monitoring/setup.py b/monitoring/setup.py index b0a19250dab3..521d4c1bc4c6 100644 --- a/monitoring/setup.py +++ b/monitoring/setup.py @@ -85,6 +85,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/oslogin/README.rst b/oslogin/README.rst index feba6661f226..5d2bb4e61e91 100644 --- a/oslogin/README.rst +++ b/oslogin/README.rst @@ -46,6 +46,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/oslogin/setup.py b/oslogin/setup.py index 492007958dda..234f4c279653 100644 --- a/oslogin/setup.py +++ b/oslogin/setup.py @@ -75,6 +75,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -83,6 +84,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/pubsub/README.rst b/pubsub/README.rst index c0ef2a2f4034..e9599751e4a0 100644 --- a/pubsub/README.rst +++ b/pubsub/README.rst @@ -58,6 +58,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/pubsub/setup.py b/pubsub/setup.py index 14d78aa1a1ed..5ef5da0d908b 100644 --- a/pubsub/setup.py +++ b/pubsub/setup.py @@ -77,6 +77,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -85,6 +86,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/redis/README.rst b/redis/README.rst index 4df28b243905..c8091bc71114 100644 --- a/redis/README.rst +++ b/redis/README.rst @@ -49,6 +49,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/redis/setup.py b/redis/setup.py index cc1c0bfc7895..47fb754731ce 100644 --- a/redis/setup.py +++ b/redis/setup.py @@ -75,6 +75,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -83,6 +84,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/resource_manager/README.rst b/resource_manager/README.rst index 61cbdeaaa0c3..343d257cbf9e 100644 --- a/resource_manager/README.rst +++ b/resource_manager/README.rst @@ -59,6 +59,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/resource_manager/setup.py b/resource_manager/setup.py index 74c24865952b..621e8a1abf46 100644 --- a/resource_manager/setup.py +++ b/resource_manager/setup.py @@ -76,6 +76,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -84,6 +85,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/runtimeconfig/README.rst b/runtimeconfig/README.rst index 690b12090a40..01b394cc3fd8 100644 --- a/runtimeconfig/README.rst +++ b/runtimeconfig/README.rst @@ -52,6 +52,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/runtimeconfig/setup.py b/runtimeconfig/setup.py index 8a5298f43c45..c7aaf4b4fbb4 100644 --- a/runtimeconfig/setup.py +++ b/runtimeconfig/setup.py @@ -76,6 +76,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -84,6 +85,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/scheduler/README.rst b/scheduler/README.rst index c8488e3b5ac2..6f5b9de25300 100644 --- a/scheduler/README.rst +++ b/scheduler/README.rst @@ -40,6 +40,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/scheduler/setup.py b/scheduler/setup.py index 047a5af67f2a..3dc1ebba43dc 100644 --- a/scheduler/setup.py +++ b/scheduler/setup.py @@ -79,6 +79,7 @@ packages=packages, namespace_packages=namespaces, install_requires=dependencies, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/securitycenter/README.rst b/securitycenter/README.rst index ebd808533e73..fd5f0cb3d96d 100644 --- a/securitycenter/README.rst +++ b/securitycenter/README.rst @@ -48,6 +48,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/securitycenter/setup.py b/securitycenter/setup.py index 7b60e6e657b6..a43e6f6adec8 100644 --- a/securitycenter/setup.py +++ b/securitycenter/setup.py @@ -64,6 +64,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -71,6 +72,7 @@ packages=packages, namespace_packages=namespaces, install_requires=dependencies, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/spanner/README.rst b/spanner/README.rst index 5ba79293f9e8..a8dad6d7e30a 100644 --- a/spanner/README.rst +++ b/spanner/README.rst @@ -54,6 +54,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/spanner/setup.py b/spanner/setup.py index 550db577796b..21214b6ba61f 100644 --- a/spanner/setup.py +++ b/spanner/setup.py @@ -77,6 +77,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -85,6 +86,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/speech/README.rst b/speech/README.rst index f0d20c4c608b..b2e1644d75ba 100644 --- a/speech/README.rst +++ b/speech/README.rst @@ -49,6 +49,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/speech/setup.py b/speech/setup.py index 87e279dab473..30170bf72271 100644 --- a/speech/setup.py +++ b/speech/setup.py @@ -75,6 +75,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -83,6 +84,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/storage/README.rst b/storage/README.rst index 22e3e989fef3..b1240baebab0 100644 --- a/storage/README.rst +++ b/storage/README.rst @@ -50,6 +50,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/storage/setup.py b/storage/setup.py index 0e52bb02ae8b..b17c190e733e 100644 --- a/storage/setup.py +++ b/storage/setup.py @@ -85,6 +85,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/tasks/README.rst b/tasks/README.rst index 29fe34091e3f..c1f4882d0fbc 100644 --- a/tasks/README.rst +++ b/tasks/README.rst @@ -48,6 +48,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/tasks/setup.py b/tasks/setup.py index 7167db84a671..8ec9df66cc67 100644 --- a/tasks/setup.py +++ b/tasks/setup.py @@ -64,6 +64,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -71,6 +72,7 @@ packages=packages, namespace_packages=namespaces, install_requires=dependencies, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/test_utils/setup.py b/test_utils/setup.py index ad22cfe8d6f8..f4a334007b43 100644 --- a/test_utils/setup.py +++ b/test_utils/setup.py @@ -43,6 +43,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Topic :: Internet', ], } @@ -59,5 +60,6 @@ description='System test utilities for google-cloud-python', packages=find_packages(), install_requires=REQUIREMENTS, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', **SETUP_BASE ) diff --git a/texttospeech/README.rst b/texttospeech/README.rst index d20deb8e990a..0129794299d5 100644 --- a/texttospeech/README.rst +++ b/texttospeech/README.rst @@ -48,6 +48,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/texttospeech/setup.py b/texttospeech/setup.py index 3559f346014b..86dbea9a0107 100644 --- a/texttospeech/setup.py +++ b/texttospeech/setup.py @@ -88,6 +88,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -96,6 +97,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/trace/README.rst b/trace/README.rst index cc6d0bf661fd..4fe31a8a784d 100644 --- a/trace/README.rst +++ b/trace/README.rst @@ -47,6 +47,15 @@ dependencies. .. _virtualenv: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/trace/setup.py b/trace/setup.py index 1be9fcf59ea1..a330388e0060 100644 --- a/trace/setup.py +++ b/trace/setup.py @@ -76,6 +76,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -84,6 +85,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/translate/README.rst b/translate/README.rst index 8ecf3d9da8fc..8eaa4ddc51bf 100644 --- a/translate/README.rst +++ b/translate/README.rst @@ -53,6 +53,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/translate/setup.py b/translate/setup.py index 0806a6ae3a2e..057cbe7fbf32 100644 --- a/translate/setup.py +++ b/translate/setup.py @@ -76,6 +76,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -84,6 +85,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/videointelligence/README.rst b/videointelligence/README.rst index 7bd4ebe1c890..998af3d48269 100644 --- a/videointelligence/README.rst +++ b/videointelligence/README.rst @@ -54,6 +54,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/videointelligence/setup.py b/videointelligence/setup.py index 2cfe9cb006c9..b31c72123962 100644 --- a/videointelligence/setup.py +++ b/videointelligence/setup.py @@ -75,6 +75,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -83,6 +84,7 @@ namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/vision/README.rst b/vision/README.rst index 697a56f26fcb..7709052a3faa 100644 --- a/vision/README.rst +++ b/vision/README.rst @@ -59,6 +59,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^ +Python >= 3.4 + +Deprecated Python Versions +^^^^^^^^^^^^^^^^^^^^^^^^^^ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/vision/setup.py b/vision/setup.py index dbc428e1127f..c60dad0403c2 100644 --- a/vision/setup.py +++ b/vision/setup.py @@ -61,6 +61,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ], @@ -68,6 +69,7 @@ packages=packages, namespace_packages=namespaces, install_requires=dependencies, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, ) diff --git a/websecurityscanner/README.rst b/websecurityscanner/README.rst index f51f4cf0cb54..a8e1e692b048 100644 --- a/websecurityscanner/README.rst +++ b/websecurityscanner/README.rst @@ -47,6 +47,15 @@ dependencies. .. _`virtualenv`: https://virtualenv.pypa.io/en/latest/ +Supported Python Versions +~~~~~~~~~~~~~~~~~~~~~~~~~ +Python >= 3.4 + +Deprecated Python Versions +~~~~~~~~~~~~~~~~~~~~~~~~~~ +Python == 2.7. Python 2.7 support will be removed on January 1, 2020. + + Mac/Linux ^^^^^^^^^ diff --git a/websecurityscanner/setup.py b/websecurityscanner/setup.py index b54c20cd62e3..ca5799ee6667 100644 --- a/websecurityscanner/setup.py +++ b/websecurityscanner/setup.py @@ -78,12 +78,14 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], platforms='Posix; MacOS X; Windows', packages=packages, namespace_packages=namespaces, install_requires=dependencies, extras_require=extras, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', include_package_data=True, zip_safe=False, )