Unverified Commit 55aeaac8 authored by Jin Hyuk Chang's avatar Jin Hyuk Chang Committed by GitHub

fix: Revert "ci: remove py2 ci" (#284)

* Revert "ci: remove py2 ci (#280)"

This reverts commit 2ac583cf.

* Update setup.py
parent b8db1626
language: python
python:
- '2.7'
- '3.6'
install:
- pip install -r requirements.txt
......
......@@ -13,7 +13,7 @@ Amundsen Databuilder is a data ingestion library, which is inspired by [Apache G
For information about Amundsen and our other services, visit the [main repository](https://github.com/lyft/amundsen#amundsen) `README.md` . Please also see our instructions for a [quick start](https://github.com/lyft/amundsen/blob/master/docs/installation.md#bootstrap-a-default-version-of-amundsen-using-docker) setup of Amundsen with dummy data, and an [overview of the architecture](https://github.com/lyft/amundsen/blob/master/docs/architecture.md#architecture).
## Requirements
- Python >= 3.6.x
- Python = 2.7.x or Python >= 3.6.x
## Doc
- https://lyft.github.io/amundsen/
......
......@@ -2,7 +2,7 @@ import os
from setuptools import setup, find_packages
__version__ = '2.6.1'
__version__ = '2.6.2'
requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')
with open(requirements_path) as requirements_file:
......@@ -53,7 +53,7 @@ setup(
packages=find_packages(exclude=['tests*']),
dependency_links=[],
install_requires=requirements,
python_requires='>=3.6,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*',
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*',
extras_require={
':python_version=="2.7"': ['typing>=3.6'], # allow typehinting PY2
'all': all_deps,
......@@ -68,6 +68,7 @@ setup(
'druid': druid,
},
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment