Skip to content

Commit

Permalink
chore: move to main branch
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed Feb 23, 2023
1 parent 1fd4f0d commit 7e9753c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 13 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
pull_request:
push:
branches:
- master
- main

concurrency:
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ scikit-build
.. image:: https://github.com/scikit-build/scikit-build/actions/workflows/ci.yml/badge.svg
:target: https://github.com/scikit-build/scikit-build/actions/workflows/ci.yml

.. image:: https://dev.azure.com/scikit-build/scikit-build/_apis/build/status/scikit-build.scikit-build?branchName=master
:target: https://dev.azure.com/scikit-build/scikit-build/_build/latest?definitionId=1&branchName=master
.. image:: https://dev.azure.com/scikit-build/scikit-build/_apis/build/status/scikit-build.scikit-build?branchName=main
:target: https://dev.azure.com/scikit-build/scikit-build/_build/latest?definitionId=1&branchName=main

.. image:: https://codecov.io/gh/scikit-build/scikit-build/branch/master/graph/badge.svg
.. image:: https://codecov.io/gh/scikit-build/scikit-build/branch/main/graph/badge.svg
:target: https://codecov.io/gh/scikit-build/scikit-build
:alt: Code coverage status

Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
trigger:
- master
- main

jobs:
- job: Windows
Expand Down
12 changes: 6 additions & 6 deletions docs/make_a_release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,20 +105,20 @@ Setting up environment

.. code::
$ git tag --sign -m "Scikit-build $release" $release master
$ git tag --sign -m "Scikit-build $release" $release main
.. warning::

We recommend using a `GPG signing key <https://help.github.com/articles/generating-a-new-gpg-key/>`_
to sign the tag.


7. Publish both the release tag and the master branch
7. Publish both the release tag and the main branch

.. code::
$ git push origin $release && \
git push origin master
git push origin main
8. Make a `GitHub release <https://github.com/scikit-build/scikit-build/releases/new>`_. Paste the converted release notes as markdown; convert using
Expand All @@ -144,7 +144,7 @@ Setting up environment
$ git add CHANGES.rst && \
git commit -m "CHANGES.rst: Add \"Next Release\" section [ci skip]" && \
git push origin master
git push origin main
Expand Down Expand Up @@ -228,8 +228,8 @@ conda-forge, follow the steps below:
6. Modify ``meta.yaml``

Update the `version string <https://github.com/conda-forge/scikit-build-feedstock/blob/master/recipe/meta.yaml#L2>`_ and
`sha256 <https://github.com/conda-forge/scikit-build-feedstock/blob/master/recipe/meta.yaml#L3>`_.
Update the `version string <https://github.com/conda-forge/scikit-build-feedstock/blob/main/recipe/meta.yaml#L2>`_ and
`sha256 <https://github.com/conda-forge/scikit-build-feedstock/blob/main/recipe/meta.yaml#L3>`_.

We have to modify the sha and the version string in the ``meta.yaml`` file.

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ ignore_missing_imports = true


[tool.pylint]
master.py-version = "3.7"
master.jobs = "0"
py-version = "3.7"
jobs = "0"
reports.output-format = "colorized"
similarities.ignore-imports = "yes"
messages_control.enable = [
Expand Down

0 comments on commit 7e9753c

Please sign in to comment.