Skip to content
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
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Please include:

Always redact sensitive information like passwords before pasting.

Check [existing issues](https://github.com/datafold/data-diff/issues) before filing a new one.
Check [existing issues](https://github.com/dtsong/data-diff/issues) before filing a new one.

## Suggesting Enhancements

Expand All @@ -27,7 +27,7 @@ Open an issue for feature requests, new database support, or documentation impro
### Setup

```bash
git clone https://github.com/datafold/data-diff.git
git clone https://github.com/dtsong/data-diff.git
cd data-diff
uv sync # install all dependencies
uv run pre-commit install # set up pre-commit hooks
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# data-diff -- Efficiently diff rows across databases

[![Community Maintained](https://img.shields.io/badge/maintained-community-blue)](https://github.com/datafold/data-diff)
[![Community Maintained](https://img.shields.io/badge/maintained-community-blue)](https://github.com/dtsong/data-diff)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
[![PyPI](https://img.shields.io/pypi/v/data-diff)](https://pypi.org/project/data-diff/)

Expand Down Expand Up @@ -89,8 +89,8 @@ See the [full documentation](https://data-diff.readthedocs.io/) for configuratio

## Contributors

<a href="https://github.com/datafold/data-diff/graphs/contributors">
<img src="https://contributors-img.web.app/image?repo=datafold/data-diff" />
<a href="https://github.com/dtsong/data-diff/graphs/contributors">
<img src="https://contributors-img.web.app/image?repo=dtsong/data-diff" />
</a>

## License
Expand Down
4 changes: 2 additions & 2 deletions data_diff/dbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def dbt_diff(
config = dbt_parser.get_datadiff_config()

if not state and not (config.prod_database or config.prod_schema):
doc_url = "https://github.com/datafold/data-diff"
doc_url = "https://github.com/dtsong/data-diff"
raise DataDiffDbtProjectVarsNotFoundError(
f"""vars: data_diff: section not found in dbt_project.yml.\n\nTo solve this, please configure your dbt project: \n{doc_url}\n\nOr specify a production manifest using the `--state` flag."""
)
Expand Down Expand Up @@ -200,7 +200,7 @@ def _get_prod_path_from_config(config, model, dev_database, dev_schema) -> tuple
if not config.prod_custom_schema:
raise DataDiffCustomSchemaNoConfigError(
f"Found a custom schema on model {model.name}, but no value for\nvars:\n data_diff:\n prod_custom_schema:\nPlease set a value or utilize the `--state` flag!\n\n"
+ "For more details see: https://github.com/datafold/data-diff"
+ "For more details see: https://github.com/dtsong/data-diff"
)
prod_schema = config.prod_custom_schema.replace("<custom_schema>", custom_schema)
# no custom schema, use the default
Expand Down
2 changes: 1 addition & 1 deletion data_diff/dbt_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def get_run_results_models(self) -> list[ManifestJsonConfig.Nodes]:
)
if dbt_version >= parse_version(UPPER_DBT_V):
logger.warning(
f"{dbt_version} is a recent version of dbt and may not be fully tested with data-diff! \nPlease report any issues to https://github.com/datafold/data-diff/issues"
f"{dbt_version} is a recent version of dbt and may not be fully tested with data-diff! \nPlease report any issues to https://github.com/dtsong/data-diff/issues"
)

success_models = [x.unique_id for x in run_results_validated.results if x.status == x.Status.success]
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

# General information about the project.
project = "data-diff"
copyright = "Datafold"
copyright = "data-diff contributors"
author = "Erez Shinan"

# The version info for the project you're documenting, acts as replacement for
Expand Down
7 changes: 2 additions & 5 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,11 @@ data-diff

**Data-diff** is a command-line tool and Python library for comparing tables in and across databases.

For more information, `See our README <https://github.com/datafold/data-diff#readme>`_
For more information, `See our README <https://github.com/dtsong/data-diff#readme>`_



Resources
---------

- Source code (git): `<https://github.com/datafold/data-diff>`_
- The rest of the `documentation`_

.. _documentation: https://docs.datafold.com/guides/os_data_diff
- Source code (git): `<https://github.com/dtsong/data-diff>`_
2 changes: 1 addition & 1 deletion docs/new-database-driver-guide.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
How to implement a new database driver for data-diff
====================================================

First, read through the `CONTRIBUTING.md <https://github.com/datafold/data-diff/blob/master/CONTRIBUTING.md>`_ document.
First, read through the `CONTRIBUTING.md <https://github.com/dtsong/data-diff/blob/master/CONTRIBUTING.md>`_ document.

Make sure data-diff is set up for development, and that all the tests pass (try to at least set it up for mysql and postgresql)

Expand Down
31 changes: 0 additions & 31 deletions docs/usage_analytics.md

This file was deleted.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ all-dbs = [
data-diff = "data_diff.__main__:main"

[project.urls]
Repository = "https://github.com/datafold/data-diff"
Issues = "https://github.com/datafold/data-diff/issues"
Changelog = "https://github.com/datafold/data-diff/blob/master/CHANGELOG.md"
Repository = "https://github.com/dtsong/data-diff"
Issues = "https://github.com/dtsong/data-diff/issues"
Changelog = "https://github.com/dtsong/data-diff/blob/master/CHANGELOG.md"

[dependency-groups]
dev = [
Expand Down
Loading