forked from repo-mirrors/dbt-core
Compare commits
7 Commits
jerco/pyth
...
v0.18.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d806768d92 | ||
|
|
fb989a7e96 | ||
|
|
761bc1365f | ||
|
|
e302ab5498 | ||
|
|
9634dfc2d9 | ||
|
|
d736c8c152 | ||
|
|
51ccbab1e2 |
@@ -1,5 +1,5 @@
|
|||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.18.1
|
current_version = 0.18.2
|
||||||
parse = (?P<major>\d+)
|
parse = (?P<major>\d+)
|
||||||
\.(?P<minor>\d+)
|
\.(?P<minor>\d+)
|
||||||
\.(?P<patch>\d+)
|
\.(?P<patch>\d+)
|
||||||
|
|||||||
10
CHANGELOG.md
10
CHANGELOG.md
@@ -1,3 +1,13 @@
|
|||||||
|
## dbt 0.18.2 (March 22, 2021)
|
||||||
|
|
||||||
|
## dbt 0.18.2rc1 (March 12, 2021)
|
||||||
|
|
||||||
|
|
||||||
|
### Under the hood
|
||||||
|
- Pin `agate<1.6.2` to avoid installation errors relating to its new dependency
|
||||||
|
`PyICU` ([#3160](https://github.com/fishtown-analytics/dbt/issues/3160),
|
||||||
|
[#3161](https://github.com/fishtown-analytics/dbt/pull/3161))
|
||||||
|
|
||||||
## dbt 0.18.1 (October 13, 2020)
|
## dbt 0.18.1 (October 13, 2020)
|
||||||
|
|
||||||
## dbt 0.18.1rc1 (October 01, 2020)
|
## dbt 0.18.1rc1 (October 01, 2020)
|
||||||
|
|||||||
@@ -96,5 +96,5 @@ def _get_dbt_plugins_info():
|
|||||||
yield plugin_name, mod.version
|
yield plugin_name, mod.version
|
||||||
|
|
||||||
|
|
||||||
__version__ = '0.18.1'
|
__version__ = '0.18.2'
|
||||||
installed = get_installed_version()
|
installed = get_installed_version()
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ def read(fname):
|
|||||||
|
|
||||||
|
|
||||||
package_name = "dbt-core"
|
package_name = "dbt-core"
|
||||||
package_version = "0.18.1"
|
package_version = "0.18.2"
|
||||||
description = """dbt (data build tool) is a command line tool that helps \
|
description = """dbt (data build tool) is a command line tool that helps \
|
||||||
analysts and engineers transform data in their warehouse more effectively"""
|
analysts and engineers transform data in their warehouse more effectively"""
|
||||||
|
|
||||||
@@ -65,7 +65,7 @@ setup(
|
|||||||
'networkx>=2.3,<3',
|
'networkx>=2.3,<3',
|
||||||
'minimal-snowplow-tracker==0.0.2',
|
'minimal-snowplow-tracker==0.0.2',
|
||||||
'colorama>=0.3.9,<0.4.4',
|
'colorama>=0.3.9,<0.4.4',
|
||||||
'agate>=1.6,<2',
|
'agate>=1.6,<1.6.2',
|
||||||
'isodate>=0.6,<0.7',
|
'isodate>=0.6,<0.7',
|
||||||
'json-rpc>=1.12,<2',
|
'json-rpc>=1.12,<2',
|
||||||
'werkzeug>=0.15,<0.17',
|
'werkzeug>=0.15,<0.17',
|
||||||
|
|||||||
32
docker/Dockerfile
Normal file
32
docker/Dockerfile
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
ARG BASE_IMAGE="python:3.8-slim-buster"
|
||||||
|
|
||||||
|
FROM $BASE_IMAGE
|
||||||
|
ARG BASE_REQUIREMENTS_SRC_PATH
|
||||||
|
ARG WHEEL_REQUIREMENTS_SRC_PATH
|
||||||
|
ARG DIST_PATH
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get dist-upgrade -y \
|
||||||
|
&& apt-get install -y --no-install-recommends \
|
||||||
|
git \
|
||||||
|
software-properties-common \
|
||||||
|
make \
|
||||||
|
build-essential \
|
||||||
|
ca-certificates \
|
||||||
|
libpq-dev \
|
||||||
|
&& apt-get clean \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||||
|
|
||||||
|
RUN echo BASE_REQUIREMENTS_SRC_PATH=$BASE_REQUIREMENTS_SRC_PATH
|
||||||
|
RUN echo WHEEL_REQUIREMENTS_SRC_PATH=$WHEEL_REQUIREMENTS_SRC_PATH
|
||||||
|
RUN echo DIST_PATH=$DIST_PATH
|
||||||
|
COPY $BASE_REQUIREMENTS_SRC_PATH ./requirements.txt
|
||||||
|
COPY $WHEEL_REQUIREMENTS_SRC_PATH ./wheel_requirements.txt
|
||||||
|
COPY $DIST_PATH ./dist
|
||||||
|
RUN pip install --upgrade pip setuptools
|
||||||
|
RUN pip install --requirement ./requirements.txt
|
||||||
|
RUN pip install --requirement ./wheel_requirements.txt
|
||||||
|
ENV PYTHONIOENCODING=utf-8
|
||||||
|
ENV LANG C.UTF-8
|
||||||
|
WORKDIR /usr/app
|
||||||
|
VOLUME /usr/app
|
||||||
|
ENTRYPOINT ["dbt"]
|
||||||
69
docker/requirements/requirements.0.18.2.txt
Normal file
69
docker/requirements/requirements.0.18.2.txt
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
agate==1.6.1
|
||||||
|
asn1crypto==1.4.0
|
||||||
|
attrs==20.3.0
|
||||||
|
azure-common==1.1.26
|
||||||
|
azure-core==1.12.0
|
||||||
|
azure-storage-blob==12.8.0
|
||||||
|
Babel==2.9.0
|
||||||
|
boto3==1.11.17
|
||||||
|
botocore==1.14.17
|
||||||
|
cachetools==4.2.1
|
||||||
|
certifi==2020.12.5
|
||||||
|
cffi==1.14.5
|
||||||
|
chardet==3.0.4
|
||||||
|
colorama==0.4.3
|
||||||
|
cryptography==2.9.2
|
||||||
|
decorator==4.4.2
|
||||||
|
docutils==0.15.2
|
||||||
|
google-api-core==1.16.0
|
||||||
|
google-auth==1.28.0
|
||||||
|
google-cloud-bigquery==1.25.0
|
||||||
|
google-cloud-core==1.3.0
|
||||||
|
google-resumable-media==0.5.1
|
||||||
|
googleapis-common-protos==1.6.0
|
||||||
|
hologram==0.0.10
|
||||||
|
idna==2.9
|
||||||
|
importlib-metadata==3.7.3
|
||||||
|
isodate==0.6.0
|
||||||
|
jeepney==0.6.0
|
||||||
|
Jinja2==2.11.2
|
||||||
|
jmespath==0.10.0
|
||||||
|
json-rpc==1.13.0
|
||||||
|
jsonschema==3.1.1
|
||||||
|
keyring==21.8.0
|
||||||
|
leather==0.3.3
|
||||||
|
Logbook==1.5.3
|
||||||
|
MarkupSafe==1.1.1
|
||||||
|
minimal-snowplow-tracker==0.0.2
|
||||||
|
msrest==0.6.21
|
||||||
|
networkx==2.5
|
||||||
|
oauthlib==3.1.0
|
||||||
|
oscrypto==1.2.1
|
||||||
|
parsedatetime==2.6
|
||||||
|
protobuf==3.11.3
|
||||||
|
psycopg2-binary==2.8.6
|
||||||
|
pyasn1==0.4.8
|
||||||
|
pyasn1-modules==0.2.8
|
||||||
|
pycparser==2.20
|
||||||
|
pycryptodomex==3.10.1
|
||||||
|
PyJWT==1.7.1
|
||||||
|
pyOpenSSL==19.1.0
|
||||||
|
pyrsistent==0.17.3
|
||||||
|
python-dateutil==2.8.1
|
||||||
|
python-slugify==4.0.1
|
||||||
|
pytimeparse==1.1.8
|
||||||
|
pytz==2020.5
|
||||||
|
PyYAML==5.4.1
|
||||||
|
requests==2.23.0
|
||||||
|
requests-oauthlib==1.3.0
|
||||||
|
rsa==4.7.2
|
||||||
|
s3transfer==0.3.6
|
||||||
|
SecretStorage==3.3.1
|
||||||
|
six==1.15.0
|
||||||
|
snowflake-connector-python==2.2.10
|
||||||
|
sqlparse==0.3.1
|
||||||
|
text-unidecode==1.3
|
||||||
|
typing-extensions==3.7.4.3
|
||||||
|
urllib3==1.25.11
|
||||||
|
Werkzeug==0.16.1
|
||||||
|
zipp==3.4.1
|
||||||
69
docker/requirements/requirements.0.18.2rc1.txt
Normal file
69
docker/requirements/requirements.0.18.2rc1.txt
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
agate==1.6.1
|
||||||
|
asn1crypto==1.4.0
|
||||||
|
attrs==20.3.0
|
||||||
|
azure-common==1.1.26
|
||||||
|
azure-core==1.12.0
|
||||||
|
azure-storage-blob==12.8.0
|
||||||
|
Babel==2.9.0
|
||||||
|
boto3==1.11.17
|
||||||
|
botocore==1.14.17
|
||||||
|
cachetools==4.2.1
|
||||||
|
certifi==2020.12.5
|
||||||
|
cffi==1.14.5
|
||||||
|
chardet==3.0.4
|
||||||
|
colorama==0.4.3
|
||||||
|
cryptography==2.9.2
|
||||||
|
decorator==4.4.2
|
||||||
|
docutils==0.15.2
|
||||||
|
google-api-core==1.16.0
|
||||||
|
google-auth==1.27.1
|
||||||
|
google-cloud-bigquery==1.25.0
|
||||||
|
google-cloud-core==1.3.0
|
||||||
|
google-resumable-media==0.5.1
|
||||||
|
googleapis-common-protos==1.6.0
|
||||||
|
hologram==0.0.10
|
||||||
|
idna==2.9
|
||||||
|
importlib-metadata==3.7.2
|
||||||
|
isodate==0.6.0
|
||||||
|
jeepney==0.6.0
|
||||||
|
Jinja2==2.11.2
|
||||||
|
jmespath==0.10.0
|
||||||
|
json-rpc==1.13.0
|
||||||
|
jsonschema==3.1.1
|
||||||
|
keyring==21.8.0
|
||||||
|
leather==0.3.3
|
||||||
|
Logbook==1.5.3
|
||||||
|
MarkupSafe==1.1.1
|
||||||
|
minimal-snowplow-tracker==0.0.2
|
||||||
|
msrest==0.6.21
|
||||||
|
networkx==2.5
|
||||||
|
oauthlib==3.1.0
|
||||||
|
oscrypto==1.2.1
|
||||||
|
parsedatetime==2.6
|
||||||
|
protobuf==3.11.3
|
||||||
|
psycopg2-binary==2.8.6
|
||||||
|
pyasn1==0.4.8
|
||||||
|
pyasn1-modules==0.2.8
|
||||||
|
pycparser==2.20
|
||||||
|
pycryptodomex==3.10.1
|
||||||
|
PyJWT==1.7.1
|
||||||
|
pyOpenSSL==19.1.0
|
||||||
|
pyrsistent==0.17.3
|
||||||
|
python-dateutil==2.8.1
|
||||||
|
python-slugify==4.0.1
|
||||||
|
pytimeparse==1.1.8
|
||||||
|
pytz==2020.5
|
||||||
|
PyYAML==5.4.1
|
||||||
|
requests==2.23.0
|
||||||
|
requests-oauthlib==1.3.0
|
||||||
|
rsa==4.7.2
|
||||||
|
s3transfer==0.3.4
|
||||||
|
SecretStorage==3.3.1
|
||||||
|
six==1.15.0
|
||||||
|
snowflake-connector-python==2.2.10
|
||||||
|
sqlparse==0.3.1
|
||||||
|
text-unidecode==1.3
|
||||||
|
typing-extensions==3.7.4.3
|
||||||
|
urllib3==1.25.11
|
||||||
|
Werkzeug==0.16.1
|
||||||
|
zipp==3.4.1
|
||||||
@@ -1 +1 @@
|
|||||||
version = '0.18.1'
|
version = '0.18.2'
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ except ImportError:
|
|||||||
|
|
||||||
|
|
||||||
package_name = "dbt-bigquery"
|
package_name = "dbt-bigquery"
|
||||||
package_version = "0.18.1"
|
package_version = "0.18.2"
|
||||||
description = """The bigquery adapter plugin for dbt (data build tool)"""
|
description = """The bigquery adapter plugin for dbt (data build tool)"""
|
||||||
|
|
||||||
this_directory = os.path.abspath(os.path.dirname(__file__))
|
this_directory = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
version = '0.18.1'
|
version = '0.18.2'
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ def _dbt_psycopg2_name():
|
|||||||
|
|
||||||
|
|
||||||
package_name = "dbt-postgres"
|
package_name = "dbt-postgres"
|
||||||
package_version = "0.18.1"
|
package_version = "0.18.2"
|
||||||
description = """The postgres adpter plugin for dbt (data build tool)"""
|
description = """The postgres adpter plugin for dbt (data build tool)"""
|
||||||
|
|
||||||
this_directory = os.path.abspath(os.path.dirname(__file__))
|
this_directory = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
version = '0.18.1'
|
version = '0.18.2'
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ except ImportError:
|
|||||||
|
|
||||||
|
|
||||||
package_name = "dbt-redshift"
|
package_name = "dbt-redshift"
|
||||||
package_version = "0.18.1"
|
package_version = "0.18.2"
|
||||||
description = """The redshift adapter plugin for dbt (data build tool)"""
|
description = """The redshift adapter plugin for dbt (data build tool)"""
|
||||||
|
|
||||||
this_directory = os.path.abspath(os.path.dirname(__file__))
|
this_directory = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
version = '0.18.1'
|
version = '0.18.2'
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ except ImportError:
|
|||||||
|
|
||||||
|
|
||||||
package_name = "dbt-snowflake"
|
package_name = "dbt-snowflake"
|
||||||
package_version = "0.18.1"
|
package_version = "0.18.2"
|
||||||
description = """The snowflake adapter plugin for dbt (data build tool)"""
|
description = """The snowflake adapter plugin for dbt (data build tool)"""
|
||||||
|
|
||||||
this_directory = os.path.abspath(os.path.dirname(__file__))
|
this_directory = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -24,7 +24,7 @@ with open(os.path.join(this_directory, 'README.md')) as f:
|
|||||||
|
|
||||||
|
|
||||||
package_name = "dbt"
|
package_name = "dbt"
|
||||||
package_version = "0.18.1"
|
package_version = "0.18.2"
|
||||||
description = """With dbt, data analysts and engineers can build analytics \
|
description = """With dbt, data analysts and engineers can build analytics \
|
||||||
the way engineers build applications."""
|
the way engineers build applications."""
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user