Skip to content

Commit 3a141f9

Browse files
authored
Update python version for databuilder (#229)
1 parent 52131b4 commit 3a141f9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Amundsen Databuilder is a data ingestion library, which is inspired by [Apache G
1212
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).
1313

1414
## Requirements
15-
- Python = 2.7.x (And Python >= 3.x if you don't use column usage transformer as it depends on antlr python 2 runtime)
15+
- Python = 2.7.x or Python >= 3.6.x
1616

1717
## Concept
1818
ETL job consists of extraction of records from the source, transform records, if necessary, and load records into the sink. Amundsen Databuilder is a ETL framework for Amundsen and there are corresponding components for ETL called Extractor, Transformer, and Loader that deals with record level operation. A component called task controls all these three components.

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,9 @@
5555
'bigquery': bigquery,
5656
'jsonpath': jsonpath
5757
},
58+
classifiers=[
59+
'Programming Language :: Python :: 2.7',
60+
'Programming Language :: Python :: 3.6',
61+
'Programming Language :: Python :: 3.7',
62+
],
5863
)

0 commit comments

Comments
 (0)