Skip to content

Commit

Permalink
Add 1.8 pre-release bundle (#129)
Browse files Browse the repository at this point in the history
* update 1.8 pre-release bundle
* remove dbt-rpc
* remove modification of `dbt-core`
* typo in `install_command`
* add hatchling as another build dependency
* explicitly add dbt-adapters and dbt-common to allow prereleases
* remove dbt-fabric and dbt-synapse due to dependency issue on dbt-common
  • Loading branch information
mikealfare authored Mar 14, 2024
1 parent 417e232 commit 916f64f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion release_creation/bundle/download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ python -m pip download \
python -m pip download \
--progress-bar off \
--dest $base_dir \
wheel
wheel hatchling
25 changes: 12 additions & 13 deletions release_creation/bundle/requirements/v1.8.pre.requirements.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
dbt-core~=1.7.0,>=1.7.3 --no-binary dbt-postgres
dbt-snowflake~=1.7.0
dbt-bigquery~=1.7.0
dbt-redshift~=1.7.0
dbt-postgres~=1.7.0
dbt-spark[PyHive,ODBC]~=1.7.1
dbt-databricks~=1.7.2
dbt-trino~=1.7.0
dbt-fabric~=1.7.0
dbt-synapse~=1.7.0
dbt-rpc~=0.4.1
google-api-core<2.16.0 # see https://github.com/dbt-labs/dbt-bigquery/issues/1081
pandas<2.2.0,>=2.0.0
dbt-adapters~=1.0.0b1
dbt-common~=1.0.0b1
dbt-core~=1.8.0b1
dbt-snowflake~=1.8.0b1
dbt-bigquery~=1.8.0b1
dbt-redshift~=1.8.0b1
dbt-postgres~=1.8.0b1
dbt-spark[PyHive,ODBC]~=1.8.0b1
dbt-databricks~=1.8.0b2 # `dbt-databricks==1.8.0b1` is pinned to `dbt-spark~=1.7`
dbt-trino~=1.8.0b1
# dbt-fabric~=1.8.0rc1 # these are both pinned to `dbt-common~=0.1`, causing conflicts
# dbt-synapse~=1.8.0rc1
pyasn1-modules~=0.2.1
pyarrow~=14.0.1
pydantic~=1.10
Expand Down
2 changes: 1 addition & 1 deletion test/integration/bundle/test_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

@pytest.mark.parametrize(
argnames="test_version",
argvalues=["0.0.0", "1.3.0", "1.4.0", "1.5.0", "1.6.0", "1.7.0b1", "1.7.0"],
argvalues=["0.0.0", "1.3.0", "1.4.0", "1.5.0", "1.6.0", "1.7.0b1", "1.7.0", "1.8.0b1"],
)
def test_generate_bundle_creates_a_bundle_with_valid_version(
test_version
Expand Down

0 comments on commit 916f64f

Please sign in to comment.