Skip to content

Commit

Permalink
rename branch to main in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Apr 16, 2023
1 parent 2a3eb65 commit 36991ca
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ name: Continuous Integration
on:
push:
branches:
- "master"
- "develop"
- "main"
tags:
- "*"
pull_request:
branches:
- "develop"
- "main"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand All @@ -28,7 +27,7 @@ jobs:
- uses: actions/checkout@v2

- name: Set up Python 3.8
uses: actions\setup-python@v2
uses: actions/setup-python@v2
with:
python-version: 3.8

Expand Down Expand Up @@ -59,7 +58,7 @@ jobs:
fetch-depth: '0'

- name: Set up Python ${{ matrix.python-version }}
uses: actions\setup-python@v2
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -94,8 +93,8 @@ jobs:
path: dist

- name: Publish to Test PyPI
# only if working on develop
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop'
# only if working on main
if: github.ref == 'refs/heads/main'
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1135723.svg)](https://doi.org/10.5281/zenodo.1135723)
[![PyPI version](https://badge.fury.io/py/anaflow.svg)](https://badge.fury.io/py/anaflow)
[![Build Status](https://github.com/GeoStat-Framework/AnaFlow/workflows/Continuous%20Integration/badge.svg?branch=develop)](https://github.com/GeoStat-Framework/AnaFlow/actions)
[![Build Status](https://github.com/GeoStat-Framework/AnaFlow/workflows/Continuous%20Integration/badge.svg?branch=main)](https://github.com/GeoStat-Framework/AnaFlow/actions)
[![Documentation Status](https://readthedocs.org/projects/docs/badge/?version=latest)](https://anaflow.readthedocs.io/en/latest/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)

<p align="center">
<img src="https://raw.githubusercontent.com/GeoStat-Framework/AnaFlow/master/docs/source/pics/Anaflow.png" alt="AnaFlow-LOGO" width="251px"/>
<img src="https://raw.githubusercontent.com/GeoStat-Framework/AnaFlow/main/docs/source/pics/Anaflow.png" alt="AnaFlow-LOGO" width="251px"/>
</p>

## Purpose
Expand Down Expand Up @@ -52,7 +52,7 @@ plt.show()
```

<p align="center">
<img src="https://raw.githubusercontent.com/GeoStat-Framework/AnaFlow/master/docs/source/pics/01_call_theis.png" alt="Theis" width="600px"/>
<img src="https://raw.githubusercontent.com/GeoStat-Framework/AnaFlow/main/docs/source/pics/01_call_theis.png" alt="Theis" width="600px"/>
</p>


Expand Down Expand Up @@ -102,5 +102,5 @@ You can contact us via <info@geostat-framework.org>.

[MIT][mit_link] © 2019 - 2021

[mit_link]: https://github.com/GeoStat-Framework/AnaFlow/blob/master/LICENSE
[mit_link]: https://github.com/GeoStat-Framework/AnaFlow/blob/main/LICENSE
[doc_link]: https://anaflow.readthedocs.io
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ Requirements
License
=======

`MIT <https://github.com/GeoStat-Framework/AnaFlow/blob/master/LICENSE>`_
`MIT <https://github.com/GeoStat-Framework/AnaFlow/blob/main/LICENSE>`_
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ project_urls =
Documentation = https://anaflow.readthedocs.io
Source = https://github.com/GeoStat-Framework/anaflow
Tracker = https://github.com/GeoStat-Framework/anaflow/issues
Changelog = https://github.com/GeoStat-Framework/anaflow/blob/develop/CHANGELOG.md
Changelog = https://github.com/GeoStat-Framework/anaflow/blob/main/CHANGELOG.md
Conda-Forge = https://anaconda.org/conda-forge/anaflow

[options]
Expand Down

0 comments on commit 36991ca

Please sign in to comment.