Skip to content

Commit

Permalink
Make typing-extensions a required dependency (#273)
Browse files Browse the repository at this point in the history
* Add check for typing_extensions

* fix

* change setup.py and remove check
  • Loading branch information
sfc-gh-sfan authored Mar 23, 2022
1 parent 8363c65 commit 95ab331
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ requirements:
- cloudpickle >=1.6.0
- snowflake-connector-python
- setuptools >34.0.0
- typing-extensions >=4.1.0
run_constrained:
- pandas >1,<1.4
- typing-extensions >=4.1.0

test:
imports:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"wheel",
"cloudpickle>=1.6.0",
f"snowflake-connector-python>={CONNECTOR_DEPENDENCY_VERSION}",
"typing-extensions>=4.1.0",
],
namespace_packages=["snowflake"],
# When a new package (directory) is added, we should also add it here
Expand All @@ -57,7 +58,6 @@
extras_require={
"pandas": [
f"snowflake-connector-python[pandas]>={CONNECTOR_DEPENDENCY_VERSION}",
"typing-extensions>=4.1.0",
],
"development": [
"pytest",
Expand Down

0 comments on commit 95ab331

Please sign in to comment.