Skip to content

Commit e5329b9

Browse files
sfc-gh-anavalosSnowflake Authors
and
Snowflake Authors
authored
Project import generated by Copybara. (#143) (#144)
GitOrigin-RevId: df7e99fe4b134425f46726b3bd1e8fc9c9b187a7 Co-authored-by: Snowflake Authors <[email protected]>
1 parent fdbf273 commit e5329b9

File tree

4 files changed

+3
-20
lines changed

4 files changed

+3
-20
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To build the package, run:
5252
`bazel` can be run from anywhere under the monorepo and it can accept absolute path or a relative path. For example,
5353

5454
```sh
55-
snowml> bazel build :wheel
55+
snowml> bazel build --config=build :wheel
5656
```
5757

5858
You can build an entire sub-tree as:
@@ -375,7 +375,7 @@ Each line shows:
375375
If you want to apply all the suggested changes, run the following command to update the `requirements.yml` file
376376

377377
```sh
378-
bazel run //bazel/requirements:update_version_requirements -- requirements.yml
378+
bazel run --config=core //bazel/requirements:update_version_requirements -- requirements.yml
379379
```
380380

381381
## Unit Testing

bazel/environments/conda-env-build.yml

-6
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,9 @@ dependencies:
1212
- lightgbm==4.1.0
1313
- numpy==1.26.4
1414
- packaging==24.1
15-
- pandas==1.5.3
16-
- pyarrow==16.1.0
17-
- pydantic==2.8.2
1815
- python-build==0.10.0
1916
- ruamel.yaml==0.17.21
2017
- scikit-learn==1.5.1
21-
- snowflake-connector-python==3.10.0
22-
- snowflake-snowpark-python==1.17.0
23-
- sphinx==5.0.2
2418
- toml==0.10.2
2519
- types-toml==0.10.8.6
2620
- xgboost==2.1.1

requirements.yml

-12
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,6 @@
162162
- name: pandas
163163
dev_version: 1.5.3
164164
version_requirements: '>=1.0.0,<3'
165-
tags:
166-
- build_essential
167165
- name: protobuf
168166
dev_version: 4.25.3
169167
- name: psutil
@@ -173,12 +171,8 @@
173171
- name: pyarrow
174172
dev_version: 16.1.0
175173
version_requirements: ''
176-
tags:
177-
- build_essential
178174
- name: pydantic
179175
dev_version: 2.8.2
180-
tags:
181-
- build_essential
182176
- name: pyjwt
183177
dev_version: 2.8.0
184178
version_requirements: '>=2.0.0, <3'
@@ -245,17 +239,11 @@
245239
name_pypi: snowflake-connector-python[pandas]
246240
dev_version: 3.10.0
247241
version_requirements: '>=3.5.0,<4'
248-
tags:
249-
- build_essential
250242
- name: snowflake-snowpark-python
251243
dev_version: 1.17.0
252244
version_requirements: '>=1.17.0,<2,!=1.26.0'
253-
tags:
254-
- build_essential
255245
- name: sphinx
256246
dev_version: 5.0.2
257-
tags:
258-
- build_essential
259247
- name: starlette
260248
dev_version: 0.27.0
261249
- name: sqlparse

tests/integ/snowflake/cortex/complete_test.py

+1
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ class CompleteRestSnowparkTest(common_test_base.CommonTestBase):
164164
# SHOW statements are one of those:
165165
# https://docs.snowflake.com/en/developer-guide/stored-procedure/stored-procedures-rights
166166
@common_test_base.CommonTestBase.sproc_test(local=False, test_owners_rights=False)
167+
@absltest.skip("https://snowflakecomputing.atlassian.net/browse/SNOW-1957615") # type: ignore[misc]
167168
def test_rest_snowpark_env(self) -> None:
168169
result = Complete(
169170
model=_MODEL_NAME,

0 commit comments

Comments
 (0)