Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Replaced master with main #1031

Closed
wants to merge 4 commits into from
Closed
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `allowempty` added to source config parameters.
- Quickstart document to show how to use models from Python.
- The latest release of the documentation now includes a link to the
documentation for the master branch (on GitHub pages).
documentation for the main branch (on GitHub pages).
- Virtual environment, GitPod, and Docker development environment setup notes to
the CONTRIBUTING.md file.
- Changelog now included in documenation website.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ RUN apt-get update && \
# Here we install DFFML and all the plugins

# The release of dffml we're using, latest is the latest PyPi release, master is
# the master branch
# the main branch
ARG DFFML_RELEASE=latest
ENV DFFML_RELEASE ${DFFML_RELEASE}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ DFFML aims to be the easiest and most convenient way to use Machine Learning.

Documentation for the latest release is hosted at https://intel.github.io/dffml/

Documentation for the master branch is hosted at
Documentation for the main branch is hosted at
https://intel.github.io/dffml/master/index.html

## Contributing
Expand Down
4 changes: 2 additions & 2 deletions docs/contributing/dev_env.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ development mode.

This docs without ``/master/`` in the URL are built from the latest release.

The docs with ``/master/`` in the URL are built from the *master* branch.
The master branch is what you get when you clone the Git repo, which we're
The docs with ``/master/`` in the URL are built from the *main* branch.
The main branch is what you get when you clone the Git repo, which we're
about to do.

Installing to your home directory will reduce permissions issues. To do
Expand Down
4 changes: 2 additions & 2 deletions docs/contributing/git.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ review your work or help you figure out what might be going wrong or how you
could solve an issue your stuck on.

Before you are get help, a review, or a final review, make sure to fetch the
latest changes from the master branch and ``merge`` or ``rebase`` them into your
latest changes from the main branch and ``merge`` or ``rebase`` them into your
branch.

When you are ready for final review, remove the ``WIP:`` prefix or draft status.
Expand Down Expand Up @@ -146,7 +146,7 @@ is okay.

For the tests in the various plugins:

- You need to grab the latests changes from the master branch. Maybe you need to
- You need to grab the latests changes from the main branch. Maybe you need to
adapt to them, for example if something got renamed, check the changelog.

- You need to add any dependencies (``pip install ...``) you need to the
Expand Down
4 changes: 2 additions & 2 deletions docs/contributing/maintainers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ Doing a Release

- Push the new branch (if created) and the tag

- Switch to the master branch
- Switch to the main branch

- Cherry pick the release commit from the new branch, but not the pinning commit

- Push the master branch
- Push the main branch

.. code-block:: console

Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Output:
{'Years': 6, 'Expertise': 13, 'Trust': 0.7, 'Salary': 70.0}
{'Years': 7, 'Expertise': 15, 'Trust': 0.8, 'Salary': 80.0}

This is the documentation for the latest release, documentation for the master
This is the documentation for the latest release, documentation for the main
branch can be found `here <master/index.html>`_.

.. toctree::
Expand Down Expand Up @@ -79,7 +79,7 @@ branch can be found `here <master/index.html>`_.
:caption: Community

GitHub <https://github.com/intel/dffml>
Master Branch Docs <https://intel.github.io/dffml/master/>
Main Branch Docs <https://intel.github.io/dffml/master/>
publications
contact
contributing/index
Expand Down
6 changes: 3 additions & 3 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ repository, you can append ``[all]``.

(.venv) C:\Users\username> python -m pip install -U dffml[all] -f https://download.pytorch.org/whl/torch_stable.html

Master Branch
Main Branch
-------------

If you want to stay on the bleeding edge of bug fixes, etc. You can install from
the master branch.
the main branch.

.. tabs::

Expand Down Expand Up @@ -153,7 +153,7 @@ and replace ``-`` with ``/``.

There's an online IDE based on Theia (similar to VS Code) called GitPod that
gives you a setup development environment to get started working with/on DFFML
right away. However, it comes with the master branch installed, you'll need to
right away. However, it comes with the main branch installed, you'll need to
run the above commands to get the lastest released version.

.. image:: https://gitpod.io/button/open-in-gitpod.svg
Expand Down
6 changes: 3 additions & 3 deletions news/origin_master_August_15_2019.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


This is our first issue of the newsletter! What's the occasion? Lot's been
happing lately in the master branch. We're due for a release soon! The next
happing lately in the main branch. We're due for a release soon! The next
release will feature changes to the following areas:

- Sources
Expand All @@ -13,7 +13,7 @@ release will feature changes to the following areas:
=================================== Sources ====================================


Labels for CSV sources were merged into master. Enabling users to save multiple
Labels for CSV sources were merged into main. Enabling users to save multiple
versions of datasets within the same CSV file.

Example:
Expand Down Expand Up @@ -47,7 +47,7 @@ Work continues on the MySQL and Hadoop Sources.


Machine Learning model packages from scratch and using the scikit machine
learning library (sklearn) have been merged into master. With these additions
learning library (sklearn) have been merged into main. With these additions
developers will be able to use DFFML to make numerical predictions.

Example:
Expand Down