Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[REVIEW] Fix missing confluent kafka version #13101

Merged
merged 4 commits into from
Apr 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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