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

[KED-3046] Remove "QuantumBlack Labs" from places where it doesn't belong any more #1161

Merged
merged 7 commits into from
Jan 21, 2022
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,8 @@ jobs:
- run:
name: Set git email and name
command: |
git config --global user.email "kedro@quantumblack.com"
git config --global user.name "QuantumBlack Labs"
git config --global user.email "kedro@kedro.com"
git config --global user.name "Kedro"
- run:
name: Trigger Read The Docs build
command: ./tools/circleci/rtd-build.sh ${RTD_TOKEN} latest
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behaviour may be
reported by contacting the project team at kedro@quantumblack.com. All
reported by contacting the project team on [Discord](https://discord.com/invite/akJDeVaxnB). All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# -- Project information -----------------------------------------------------

project = "Kedro"
author = "QuantumBlack"
author = "Kedro"

# The short X.Y version.
version = re.match(r"^([0-9]+\.[0-9]+).*", release).group(1)
Expand Down Expand Up @@ -259,7 +259,7 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, "Kedro.tex", "Kedro Documentation", "QuantumBlack", "manual")
(master_doc, "Kedro.tex", "Kedro Documentation", "Kedro", "manual")
]

# -- Options for manual page output ------------------------------------------
Expand All @@ -280,7 +280,7 @@
"Kedro Documentation",
author,
"Kedro",
"Kedro is a Data Science framework for QuantumBlack-led projects.",
"Kedro is a Python framework for creating reproducible, maintainable and modular data science code.",
"Data-Science",
)
]
Expand Down
4 changes: 2 additions & 2 deletions docs/source/03_tutorial/07_set_up_experiment_tracking.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Set up experiment tracking

Experiment tracking is the process of saving all machine-learning related experiment information so that it is easy to find and compare past runs. [Kedro-Viz](https://github.com/quantumblacklabs/kedro-viz) supports native experiment tracking from [version 4.1.1](https://github.com/quantumblacklabs/kedro-viz/releases/tag/v4.1.1) onwards. When experiment tracking is enabled in your Kedro project, you will be able to access, edit and compare your experiments directly from the Kedro-Viz web app.
Experiment tracking is the process of saving all machine-learning related experiment information so that it is easy to find and compare past runs. [Kedro-Viz](https://github.com/kedro-org/kedro-viz) supports native experiment tracking from [version 4.1.1](https://github.com/kedro-org/kedro-viz/releases/tag/v4.1.1) onwards. When experiment tracking is enabled in your Kedro project, you will be able to access, edit and compare your experiments directly from the Kedro-Viz web app.

![](../meta/images/experiment-tracking_demo_small.gif)

Expand Down Expand Up @@ -160,4 +160,4 @@ You will now be able to access, compare and pin your runs by toggling the `Compa

![](../meta/images/experiment-tracking_demo.gif)

Keep an eye out on the [Kedro-Viz release page](https://github.com/quantumblacklabs/kedro-viz/releases) for the upcoming releases on this experiment tracking functionality.
Keep an eye out on the [Kedro-Viz release page](https://github.com/kedro-org/kedro-viz/releases) for the upcoming releases on this experiment tracking functionality.
6 changes: 3 additions & 3 deletions docs/source/09_development/03_commands_reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ Returns output similar to the following, depending on the version of Kedro used
|_|\_\___|\__,_|_| \___/
v0.17.6

kedro allows teams to create analytics
projects. It is developed as part of
the Kedro initiative at QuantumBlack.
Kedro is a Python framework for
creating reproducible, maintainable
and modular data science code.

Installed plugins:
kedro_viz: 3.4.0 (hooks:global,line_magic)
Expand Down
2 changes: 1 addition & 1 deletion features/steps/cli_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def init_git_repo(context):
with util.chdir(context.root_project_dir):
check_run("git init")
check_run("git config user.name 'Tester'")
check_run("git config user.email 'tester.kedro@quantumblack.com'")
check_run("git config user.email 'tester.kedro@kedro.com'")


@given("I have added a test jupyter notebook")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# -- Project information -----------------------------------------------------

project = "{{ cookiecutter.python_package }}"
author = "QuantumBlack"
author = "Kedro"

# The short X.Y version.
version = re.match(r"^([0-9]+\.[0-9]+).*", release).group(1)
Expand Down Expand Up @@ -149,7 +149,7 @@
master_doc,
"{{ cookiecutter.python_package }}.tex",
"{{ cookiecutter.python_package }} Documentation",
"QuantumBlack",
"Kedro",
"manual",
)
]
Expand Down
6 changes: 3 additions & 3 deletions kedro/framework/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ def info():
"""Get more information about kedro."""
click.secho(LOGO, fg="green")
click.echo(
"kedro allows teams to create analytics\n"
"projects. It is developed as part of\n"
"the Kedro initiative at QuantumBlack."
"Kedro is a Python framework for\n"
"creating reproducible, maintainable\n"
"and modular data science code."
)

plugin_versions = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# -- Project information -----------------------------------------------------

project = "{{ cookiecutter.python_package }}"
author = "QuantumBlack"
author = "Kedro"

# The short X.Y version.
version = re.match(r"^([0-9]+\.[0-9]+).*", release).group(1)
Expand Down Expand Up @@ -150,7 +150,7 @@
master_doc,
"{{ cookiecutter.python_package }}.tex",
"{{ cookiecutter.python_package }} Documentation",
"QuantumBlack",
"Kedro",
"manual",
)
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def _collect_requirements(requires):
include_package_data=True,
tests_require=test_requires,
install_requires=requires,
author="QuantumBlack Labs",
author="Kedro",
entry_points={"console_scripts": ["kedro = kedro.framework.cli:main"]},
package_data={
name: ["py.typed", "test_requirements.txt"] + template_files + doc_html_files
Expand Down
8 changes: 0 additions & 8 deletions tests/framework/cli/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,6 @@ def test_print_version(self):
assert result_abr.exit_code == 0
assert version in result_abr.output

def test_info_contains_qb(self):
"""Check that `kedro info` output contains
reference to QuantumBlack."""
result = CliRunner().invoke(cli, ["info"])

assert result.exit_code == 0
assert "QuantumBlack" in result.output

def test_info_contains_plugin_versions(self, entry_point, mocker):
get_distribution = mocker.patch("pkg_resources.get_distribution")
get_distribution().version = "1.0.2"
Expand Down