Skip to content

Commit

Permalink
fix broken links (#676)
Browse files Browse the repository at this point in the history
  • Loading branch information
jovan-stojanovic authored Jul 21, 2023
1 parent f9f2b1c commit c47d7ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/04_fuzzy_joining_and_FeatureAugmenter.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import pandas as pd

df = pd.read_csv(
"https://raw.githubusercontent.com/dirty-cat/datasets/master/data/Happiness_report_2022.csv", # noqa
"https://raw.githubusercontent.com/skrub-data/datasets/master/data/Happiness_report_2022.csv", # noqa
thousands=",",
)
df.drop(df.tail(1).index, inplace=True)
Expand Down
2 changes: 1 addition & 1 deletion skrub/datasets/_ken_embeddings.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


_correspondence_table_url = (
"https://raw.githubusercontent.com/dirty-cat/datasets"
"https://raw.githubusercontent.com/skrub-data/datasets"
"/master/data/ken_correspondence.csv"
)

Expand Down
2 changes: 1 addition & 1 deletion skrub/datasets/tests/test_fetching.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_openml_fetching(fetch_openml_mock: mock.Mock):
that asserts the fetching function works correctly.
We don't download all datasets as it would take way too long:
see https://github.com/dirty-cat/skrub/issues/523
see https://github.com/skrub-data/skrub/issues/523
"""
with TemporaryDirectory() as temp_dir:
# Download the dataset without loading it in memory.
Expand Down

0 comments on commit c47d7ea

Please sign in to comment.