-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci!: update requirements through GitHub Actions (#56)
* build: limit to sphinxcontrib-bibtex < 2 * ci: import dev dependency upgrader ComPWA/expertsystem#412 * ci: upgrade developer dependencies (automatic) * fix: cross-references in develop page
- Loading branch information
Showing
48 changed files
with
1,826 additions
and
516 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,32 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "[BUG] " | ||
labels: bug | ||
title: "" | ||
labels: Bug | ||
assignees: "" | ||
--- | ||
|
||
**Describe the bug** A clear and concise description of what the bug is. | ||
## Bug description | ||
|
||
**To Reproduce** Steps to reproduce the behavior: | ||
<!-- A clear and concise description of what the bug is. --> | ||
|
||
<!-- If applicable, add a log or screenshot to help explain your problem. --> | ||
|
||
## How to reproduce? | ||
|
||
Steps to reproduce the behavior: | ||
|
||
1. | ||
|
||
**Expected behavior** A clear and concise description of what you expected to | ||
happen. | ||
## Expected behavior | ||
|
||
**Error log** If applicable, add an error log or screenshots to help explain | ||
your problem. | ||
<!-- A clear and concise description of what you expected to happen. --> | ||
|
||
**Desktop (please complete the following information):** | ||
## System info | ||
|
||
- OS: [e.g. iOS] | ||
- Version [e.g. 22] | ||
Bug resulted on the following system: | ||
|
||
**Additional context** Add any other context about the problem here. | ||
- OS: <!-- e.g. macOS, WSL Ubuntu, ...--> | ||
- Version <!-- e.g. 10.15, 20.04, ... --> | ||
- Python version: <!-- e.g. 3.6, 3.7, ... --> | ||
- Virtual environment: <!-- e.g. venv, Conda, pip user install, ... --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: "[REQUEST] " | ||
labels: "" | ||
title: "" | ||
labels: "💡 Enhancement" | ||
assignees: "" | ||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** A clear and | ||
## Problem description | ||
|
||
<!-- Is your feature request related to a problem? Please provide a clear and | ||
concise description of what the problem is. [Example: "I'm always frustrated | ||
when ..."] | ||
when ..." --> | ||
|
||
## Proposed solution | ||
|
||
**Describe the solution you'd like** A clear and concise description of what | ||
you want to happen. | ||
<!-- Describe the solution you'd want to happen. --> | ||
|
||
**Describe alternatives you've considered** A clear and concise description of | ||
any alternative solutions or features you've considered. | ||
<!-- Are there alternatives you have considered? --> | ||
|
||
**Additional context** Add any other context or screenshots about the feature | ||
request here. | ||
<!-- Additional context: --> | ||
<!-- Add any other context or screenshots about the feature --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# cspell:ignore noreply | ||
|
||
name: Requirements (scheduled) | ||
|
||
on: | ||
schedule: | ||
- cron: "0 2 * * 1" | ||
|
||
jobs: | ||
upgrade: | ||
name: Upgrade requirement files | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
matrix: | ||
python-version: | ||
- 3.6 | ||
- 3.7 | ||
- 3.8 | ||
- 3.9 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@master | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pip-tools | ||
- name: Upgrade dependencies | ||
run: bash reqs/upgrade.sh | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: ${{ matrix.python-version }} | ||
path: reqs/${{ matrix.python-version }} | ||
|
||
push: | ||
name: Create PR | ||
runs-on: ubuntu-20.04 | ||
needs: | ||
- upgrade | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
token: ${{ secrets.PAT }} | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
path: reqs | ||
- run: git status -s | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
commit-message: "ci: upgrade developer dependencies" | ||
committer: GitHub <[email protected]> | ||
author: GitHub <[email protected]> | ||
title: "ci: upgrade developer dependencies" | ||
labels: | | ||
🖱️ DX | ||
branch-suffix: timestamp | ||
delete-branch: true | ||
token: ${{ secrets.PAT }} | ||
- name: Print PR info | ||
run: | | ||
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" | ||
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" |
Oops, something went wrong.