Skip to content

Commit

Permalink
DOC: update links to compwa.github.io (#37)
Browse files Browse the repository at this point in the history
* DX: switch to Python 3.9 in developer environment
* FIX: ignore `mypy` false-positive
  • Loading branch information
redeboer authored Jan 20, 2024
1 parent 434f965 commit c61c831
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tasks:
- init: pyenv local 3.8
- init: pyenv local 3.9
- init: pip install -e .[dev]

github:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repos:
- id: check-useless-excludes

- repo: https://github.com/ComPWA/policy
rev: 0.2.0
rev: 0.2.2
hooks:
- id: check-dev-files
args:
Expand Down
4 changes: 1 addition & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@
[![Open in Visual Studio Code](https://img.shields.io/badge/vscode-open-blue?logo=visualstudiocode)](https://open.vscode.dev/ComPWA/sphinx-hep-pdgref)
[![GitPod](https://img.shields.io/badge/gitpod-open-blue?logo=gitpod)](https://gitpod.io/#https://github.com/ComPWA/sphinx-hep-pdgref)

This package is part of the [ComPWA Organization](https://github.com/ComPWA). For more
information about how to contribute to the packages, go to
[compwa-org.rtfd.io/en/stable/develop.html](https://compwa-org.readthedocs.io/en/stable/develop.html)!
This package is part of the [ComPWA Organization](https://github.com/ComPWA). For more information about how to contribute to the packages, go to [compwa.github.io/develop](https://compwa.github.io/develop)!
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: sphinx-hep-pdgref
channels:
- defaults
dependencies:
- python==3.8.*
- python==3.9.*
- pip
- pip:
- -e .[dev]
Expand Down
2 changes: 1 addition & 1 deletion src/sphinx_hep_pdgref/role.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ def role( # noqa: PLR0913
node = nodes.reference(rawtext, link_text, refuri=url, **options)
return [node], []

return role
return role # type:ignore[return-value]

0 comments on commit c61c831

Please sign in to comment.