You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Addresses #3675 and #3706
This PR moves the `datasets` API from experimental to stable. Users can now do:
```python
from cugraph.datasets import karate
G = karate.get_graph()
```
The existing `experimental.datasets` package has been updated with the `promoted_experimental_warning_wrapper()`. All notebooks, docstrings, and unit test dependencies on `datasets` have been updated to use the stable API.
This PR also removes the networkx warning suppression from the unit tests.
Authors:
- ralph (https://github.com/nv-rliu)
- Naim (https://github.com/naimnv)
Approvers:
- AJ Schmidt (https://github.com/ajschmidt8)
- Rick Ratzel (https://github.com/rlratzel)
URL: #3712
Is this a new feature, an improvement, or a change to existing functionality?
Improvement
How would you describe the priority of this feature request
Medium/Low
Please provide a clear description of problem this feature solves
The cugraph unit tests have been suppressing
DeprecationWarnings
from networkx calls. These can now be removed to clean up the tests.Describe your ideal solution
These should now be removed
The text was updated successfully, but these errors were encountered: