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 .github/workflows/check-styles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ name: Style checking

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

jobs:
ruff-format:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/get_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ name: GetVersion

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Python package

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: [master]
branches: [main]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
![Python package](https://github.com/Electrostatics/pdb2pqr/workflows/Python%20package/badge.svg)
[![codecov](https://codecov.io/gh/Electrostatics/pdb2pqr/branch/master/graph/badge.svg)](https://codecov.io/gh/Electrostatics/pdb2pqr)
[![codecov](https://codecov.io/gh/Electrostatics/pdb2pqr/branch/main/graph/badge.svg)](https://codecov.io/gh/Electrostatics/pdb2pqr)
[![Documentation Status](https://readthedocs.org/projects/pdb2pqr/badge/?version=latest)](https://pdb2pqr.readthedocs.io/en/latest/?badge=latest)

PDB2PQR
Expand Down
2 changes: 1 addition & 1 deletion docs/source/extending.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Adding new functionality
^^^^^^^^^^^^^^^^^^^^^^^^

PDB2PQR welcomes new contributions; the software API is documented in :ref:`api-label`.
To contribute code, submit a *pull request* against the master branch in the `PDB2PQR repository <https://github.com/Electrostatics/pdb2pqr>`_.
To contribute code, submit a *pull request* against the main branch in the `PDB2PQR repository <https://github.com/Electrostatics/pdb2pqr>`_.
Please be sure to run PDB2PQR tests, as described in :ref:`testing-label`, before submitting new code.

^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down
Loading