Skip to content

Commit

Permalink
Fix more references to master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
pronovic committed Jan 1, 2025
1 parent d3cba13 commit 0228750
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions PyPI.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Apologies Python Library

[![pypi](https://img.shields.io/pypi/v/apologies.svg)](https://pypi.org/project/apologies/)
[![license](https://img.shields.io/pypi/l/apologies.svg)](https://github.com/pronovic/apologies/blob/master/LICENSE)
[![license](https://img.shields.io/pypi/l/apologies.svg)](https://github.com/pronovic/apologies/blob/main/LICENSE)
[![wheel](https://img.shields.io/pypi/wheel/apologies.svg)](https://pypi.org/project/apologies/)
[![python](https://img.shields.io/pypi/pyversions/apologies.svg)](https://pypi.org/project/apologies/)
[![Test Suite](https://github.com/pronovic/apologies/workflows/Test%20Suite/badge.svg)](https://github.com/pronovic/apologies/actions?query=workflow%3A%22Test+Suite%22)
[![docs](https://readthedocs.org/projects/apologies/badge/?version=stable&style=flat)](https://apologies.readthedocs.io/en/stable/)
[![coverage](https://coveralls.io/repos/github/pronovic/apologies/badge.svg?branch=master)](https://coveralls.io/github/pronovic/apologies?branch=master)
[![coverage](https://coveralls.io/repos/github/pronovic/apologies/badge.svg?branch=main)](https://coveralls.io/github/pronovic/apologies?branch=main)
[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/)

[Apologies](https://github.com/pronovic/apologies) is a Python library that implements a game similar to the [Sorry](https://en.wikipedia.org/wiki/Sorry!_(game)) board game. On UNIX-like platforms, it includes a console demo that plays the game with automated players, intended for use by developers and not by end users. See the [documentation](https://apologies.readthedocs.io/en/stable) for notes about the public interface.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Apologies Python Library

[![pypi](https://img.shields.io/pypi/v/apologies.svg)](https://pypi.org/project/apologies/)
[![license](https://img.shields.io/pypi/l/apologies.svg)](https://github.com/pronovic/apologies/blob/master/LICENSE)
[![license](https://img.shields.io/pypi/l/apologies.svg)](https://github.com/pronovic/apologies/blob/main/LICENSE)
[![wheel](https://img.shields.io/pypi/wheel/apologies.svg)](https://pypi.org/project/apologies/)
[![python](https://img.shields.io/pypi/pyversions/apologies.svg)](https://pypi.org/project/apologies/)
[![Test Suite](https://github.com/pronovic/apologies/workflows/Test%20Suite/badge.svg)](https://github.com/pronovic/apologies/actions?query=workflow%3A%22Test+Suite%22)
[![docs](https://readthedocs.org/projects/apologies/badge/?version=stable&style=flat)](https://apologies.readthedocs.io/en/stable/)
[![coverage](https://coveralls.io/repos/github/pronovic/apologies/badge.svg?branch=master)](https://coveralls.io/github/pronovic/apologies?branch=master)
[![coverage](https://coveralls.io/repos/github/pronovic/apologies/badge.svg?branch=main)](https://coveralls.io/github/pronovic/apologies?branch=main)
[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/)

This is a Python library that implements a game similar to the [Sorry](https://en.wikipedia.org/wiki/Sorry!_(game)) board game. On UNIX-like platforms, it includes a console demo that plays the game with automated players, intended for use by developers and not by end users.
Expand Down
10 changes: 5 additions & 5 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Release v\ |version|
:target: https://pypi.org/project/apologies/

.. image:: https://img.shields.io/pypi/l/apologies.svg
:target: https://github.com/pronovic/apologies/blob/master/LICENSE
:target: https://github.com/pronovic/apologies/blob/main/LICENSE

.. image:: https://img.shields.io/pypi/wheel/apologies.svg
:target: https://pypi.org/project/apologies/
Expand All @@ -21,8 +21,8 @@ Release v\ |version|
.. image:: https://readthedocs.org/projects/apologies/badge/?version=stable&style=flat
:target: https://apologies.readthedocs.io/en/stable/

.. image:: https://coveralls.io/repos/github/pronovic/apologies/badge.svg?branch=master
:target: https://coveralls.io/github/pronovic/apologies?branch=master
.. image:: https://coveralls.io/repos/github/pronovic/apologies/badge.svg?branch=main
:target: https://coveralls.io/github/pronovic/apologies?branch=main

Apologies_ is a Python library that implements a game similar to the Sorry_
board game. On UNIX-like platforms, it includes a console demo that plays the
Expand Down Expand Up @@ -50,7 +50,7 @@ Documentation
:maxdepth: 1

Commonly-used classes are imported into
`__init__.py <https://github.com/pronovic/apologies/blob/master/src/apologies/__init__.py>`_
`__init__.py <https://github.com/pronovic/apologies/blob/main/src/apologies/__init__.py>`_
to flatten the namespace and make the library easier to use. In general, you
should follow the examples below and import classes directly from
``apologies``, rather than importing from submodules.
Expand Down Expand Up @@ -184,7 +184,7 @@ require extra configuration before the terminal can be resized properly
.. _Character: autoapi/apologies/engine/index.html#apologies.engine.Character
.. _CharacterInputSource: autoapi/apologies/source/index.html#apologies.source.CharacterInputSource
.. _Characters: autoapi/apologies/engine/index.html#apologies.engine.Character
.. _DEVELOPER.md: https://github.com/pronovic/apologies/blob/master/DEVELOPER.md#running-the-demo
.. _DEVELOPER.md: https://github.com/pronovic/apologies/blob/main/DEVELOPER.md#running-the-demo
.. _Engine: autoapi/apologies/engine/index.html#apologies.engine.Engine
.. _Game: autoapi/apologies/game/index.html#apologies.game.Game
.. _GameMode: autoapi/apologies/game/index.html#apologies.game.GameMode
Expand Down

0 comments on commit 0228750

Please sign in to comment.