Skip to content

Commit

Permalink
Fix missing confluent kafka version (#13101)
Browse files Browse the repository at this point in the history
This PR fixes missing `python-confluent-kafka` version changes in `custreamz` and removes `python-confluent-kafka` from `cudf_kafka` because I don't see any usage of `confluent_kafka` in the python code.

Authors:
  - GALI PREM SAGAR (https://github.com/galipremsagar)
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - Ray Douglass (https://github.com/raydouglass)
  - Vyas Ramasubramani (https://github.com/vyasr)
  - Bradley Dice (https://github.com/bdice)

URL: #13101
  • Loading branch information
galipremsagar authored Apr 10, 2023
1 parent cf26353 commit 5e41c1f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion conda/recipes/cudf_kafka/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ requirements:
run:
- python
- libcudf_kafka ={{ version }}
- python-confluent-kafka >=1.9.0,<1.10.0a0
- cudf ={{ version }}

test:
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/custreamz/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ build:
requirements:
host:
- python
- python-confluent-kafka >=1.7.0,<1.8.0a0
- python-confluent-kafka >=1.9.0,<1.10.0a0
- cudf_kafka ={{ version }}
run:
- python
Expand All @@ -44,7 +44,7 @@ requirements:
- dask ==2023.3.2
- dask-core ==2023.3.2
- distributed ==2023.3.2.1
- python-confluent-kafka >=1.7.0,<1.8.0a0
- python-confluent-kafka >=1.9.0,<1.10.0a0
- cudf_kafka ={{ version }}

test:
Expand Down
8 changes: 4 additions & 4 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -393,20 +393,20 @@ dependencies:
- *cupy_pip
run_cudf_kafka:
common:
- output_types: conda
packages:
- python-confluent-kafka>=1.9.0,<1.10.0a0
- output_types: [requirements, pyproject]
packages:
- *cudf
- confluent-kafka>=1.9.0,<1.10.0a0
run_custreamz:
common:
- output_types: conda
packages:
- python-confluent-kafka>=1.9.0,<1.10.0a0
- output_types: [conda, requirements, pyproject]
packages:
- streamz
- output_types: [requirements, pyproject]
packages:
- confluent-kafka>=1.9.0,<1.10.0a0
- *cudf
- cudf_kafka==23.6.*
test_cpp:
Expand Down
1 change: 0 additions & 1 deletion python/cudf_kafka/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ authors = [
license = { text = "Apache 2.0" }
requires-python = ">=3.8"
dependencies = [
"confluent-kafka>=1.9.0,<1.10.0a0",
"cudf==23.6.*",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.

Expand Down
1 change: 1 addition & 0 deletions python/custreamz/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ authors = [
license = { text = "Apache 2.0" }
requires-python = ">=3.8"
dependencies = [
"confluent-kafka>=1.9.0,<1.10.0a0",
"cudf==23.6.*",
"cudf_kafka==23.6.*",
"streamz",
Expand Down

0 comments on commit 5e41c1f

Please sign in to comment.