Skip to content

Commit

Permalink
Bumping version.
Browse files Browse the repository at this point in the history
  • Loading branch information
elongl committed Oct 19, 2022
1 parent 27252f2 commit d8bf095
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 48 deletions.
10 changes: 4 additions & 6 deletions docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,17 @@ Make sure to copy the packages that are relevant to your dbt version.
```yml packages.yml
packages:
- package: elementary-data/elementary
version: 0.5.0
## compatible with Elementary CLI version 0.5.0
## see docs: https://docs.elementary-data.com/
version: 0.5.1
## Docs: https://docs.elementary-data.com
```

**For dbt >=1.0.0 \<1.2.0:**

```yml packages.yml
packages:
- package: elementary-data/elementary
version: 0.5.0
## compatible with Elementary CLI version 0.5.0
## see docs: https://docs.elementary-data.com/
version: 0.5.1
## Docs: https://docs.elementary-data.com

## !! Important !! For dbt <1.2.0 ##
## (Prevents dbt_utils versions exceptions) ##
Expand Down
2 changes: 1 addition & 1 deletion elementary/monitor/dbt_project/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ packages:
- package: dbt-labs/dbt_utils
version: [">=0.8.0", "<0.9.0"]
- package: elementary-data/elementary
version: 0.5.0
version: 0.5.1
88 changes: 47 additions & 41 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,58 +9,64 @@
README = (HERE / "README.md").read_text()

setup(
name='elementary-data',
description='Data monitoring and lineage',
version='0.5.2',
name="elementary-data",
description="Data monitoring and lineage",
version="0.5.3",
packages=find_packages(),
python_requires='>=3.6.2',
entry_points='''
python_requires=">=3.6.2",
entry_points="""
[console_scripts]
edr=elementary.cli.cli:cli
''',
""",
author="Elementary",
package_data={"": ["header.html", "index.html", "dbt_project/*", "dbt_project/macros/*", "dbt_project/models/*",
"dbt_project/models/alerts/*"]},
package_data={
"": [
"header.html",
"index.html",
"dbt_project/*",
"dbt_project/macros/*",
"dbt_project/models/*",
"dbt_project/models/alerts/*",
]
},
keyword="data, lineage, data lineage, data warehouse, DWH, observability, data monitoring, data observability, "
"Snowflake, BigQuery, Redshift, data reliability, analytics engineering",
"Snowflake, BigQuery, Redshift, data reliability, analytics engineering",
long_description=README,
install_requires=[
'click>=7.0,<9',
'pyfiglet',
'dbt-core>=0.20,<2.0.0',
'requests<3.0.0',
'beautifulsoup4<5.0.0',
'posthog<3.0.0',
'boto3<2.0.0',
'google-cloud-storage<3.0.0',
'ruamel.yaml<1.0.0',
'alive-progress<=2.3.1',
'slack-sdk>=3.9.0,<3.18.0',
'pydantic<2.0',
'networkx>=2.3,<3'
"click>=7.0,<9",
"pyfiglet",
"dbt-core>=0.20,<2.0.0",
"requests<3.0.0",
"beautifulsoup4<5.0.0",
"posthog<3.0.0",
"boto3<2.0.0",
"google-cloud-storage<3.0.0",
"ruamel.yaml<1.0.0",
"alive-progress<=2.3.1",
"slack-sdk>=3.9.0,<3.18.0",
"pydantic<2.0",
"networkx>=2.3,<3",
],
extras_require={
'snowflake': ['dbt-snowflake>=0.20,<2.0.0'],
'bigquery': ['dbt-bigquery>=0.20,<2.0.0'],
'redshift': ['dbt-redshift>=0.20,<2.0.0'],
'postgres': ['dbt-postgres>=0.20,<2.0.0'],
'databricks': ['dbt-databricks>=0.20,<2.0.0'],
'spark': ['dbt-spark>=0.20,<2.0.0', 'dbt-spark[PyHive]>=0.20,<2.0.0']
"snowflake": ["dbt-snowflake>=0.20,<2.0.0"],
"bigquery": ["dbt-bigquery>=0.20,<2.0.0"],
"redshift": ["dbt-redshift>=0.20,<2.0.0"],
"postgres": ["dbt-postgres>=0.20,<2.0.0"],
"databricks": ["dbt-databricks>=0.20,<2.0.0"],
"spark": ["dbt-spark>=0.20,<2.0.0", "dbt-spark[PyHive]>=0.20,<2.0.0"],
},
long_description_content_type="text/markdown",
license='',
url='https://github.com/elementary-data/elementary',
author_email='or@elementary-data.com',
license="",
url="https://github.com/elementary-data/elementary",
author_email="or@elementary-data.com",
classifiers=[
'License :: OSI Approved :: Apache Software License',

'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',

'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"License :: OSI Approved :: Apache Software License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)

0 comments on commit d8bf095

Please sign in to comment.