We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07151fb commit 53153cfCopy full SHA for 53153cf
requirements.txt
@@ -1,4 +1,4 @@
1
-dbt-core==1.0.*
2
-pyathena==2.2.0
3
-boto3==1.18.12
4
-tenacity==6.3.1
+dbt-core>=1.0.1
+pyathena>=2.2.0
+boto3>=1.18.12
+tenacity>=6.3.1
setup.py
@@ -52,9 +52,9 @@ def _dbt_athena_version() -> str:
52
packages=find_namespace_packages(include=["dbt", "dbt.*"]),
53
include_package_data=True,
54
install_requires=[
55
- "dbt-core~=1.0.0",
56
- "pyathena==2.2.0",
57
- "boto3==1.18.12",
58
- "tenacity==6.3.1",
+ "dbt-core>=1.0.1",
+ "pyathena>=2.2.0",
+ "boto3>=1.18.12",
+ "tenacity>=6.3.1",
59
]
60
)
0 commit comments