Quellcode durchsuchen

Merge branch 'master' into features

pull/278/head
Jérôme Deuchnord vor 2 Jahren
Ursprung
Commit
997ccc8b3a
9 geänderte Dateien mit 35 neuen und 23 gelöschten Zeilen
  1. +23
    -11
      .github/dependabot.yml
  2. +1
    -1
      .github/workflows/appimage.yml
  3. +2
    -2
      .github/workflows/black.yml
  4. +2
    -2
      .github/workflows/i18n.yml
  5. +1
    -1
      .github/workflows/manpage.yml
  6. +2
    -2
      .github/workflows/release.yml
  7. +2
    -2
      .github/workflows/tests.yml
  8. +1
    -1
      poetry.lock
  9. +1
    -1
      pyproject.toml

+ 23
- 11
.github/dependabot.yml Datei anzeigen

@@ -1,14 +1,26 @@
version: 2 version: 2


updates: updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 5
target-branch: master
reviewers:
- Deuchnord
commit-message:
prefix: chore
include: scope
- package-ecosystem: pip
directory: "/"
target-branch: master
open-pull-requests-limit: 5
schedule:
interval: daily
reviewers:
- Deuchnord
commit-message:
prefix: chore
include: scope

- package-ecosystem: github-actions
directory: "/"
open-pull-requests-limit: 5
target-branch: master
schedule:
interval: weekly
reviewers:
- Deuchnord
commit-message:
prefix: ci
include: scope

+ 1
- 1
.github/workflows/appimage.yml Datei anzeigen

@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest


steps: steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3


- name: Prepare environment - name: Prepare environment
run: | run: |


+ 2
- 2
.github/workflows/black.yml Datei anzeigen

@@ -12,8 +12,8 @@ jobs:


name: Code Style name: Code Style
steps: steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with: with:
python-version: 3.9 python-version: 3.9
- uses: psf/black@21.8b0 - uses: psf/black@21.8b0


+ 2
- 2
.github/workflows/i18n.yml Datei anzeigen

@@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest


steps: steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with: with:
python-version: '3.x' python-version: '3.x'
- name: Install dependencies - name: Install dependencies


+ 1
- 1
.github/workflows/manpage.yml Datei anzeigen

@@ -12,7 +12,7 @@ jobs:
name: Check name: Check


steps: steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3


- name: Compile man pages - name: Compile man pages
run: | run: |


+ 2
- 2
.github/workflows/release.yml Datei anzeigen

@@ -9,10 +9,10 @@ jobs:
name: Build and Release to PyPI name: Build and Release to PyPI
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3


- name: Set up Python - name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with: with:
python-version: '3.x' python-version: '3.x'




+ 2
- 2
.github/workflows/tests.yml Datei anzeigen

@@ -27,10 +27,10 @@ jobs:


name: Python ${{ matrix.python-version }} on ${{ matrix.os }} name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3


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




+ 1
- 1
poetry.lock Datei anzeigen

@@ -369,7 +369,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-
[metadata] [metadata]
lock-version = "1.1" lock-version = "1.1"
python-versions = ">=3.7,<3.11" python-versions = ">=3.7,<3.11"
content-hash = "4912c8e5a01491e92af69a090a45aeb8fa8d1d80e0c08b51c87471378ce4950d"
content-hash = "351d9199cffd4c1ad1b234c67a8f463b54d724b24215745584cb4555cf13283c"


[metadata.files] [metadata.files]
atomicwrites = [ atomicwrites = [


+ 1
- 1
pyproject.toml Datei anzeigen

@@ -25,7 +25,7 @@ importlib-metadata = "^4.11"
openlocationcode = "^1.0" openlocationcode = "^1.0"


[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
black = "^22.1"
black = "^22.3"
pytest = "^7.0" pytest = "^7.0"
aurornis = "^1.2" aurornis = "^1.2"




Laden…
Abbrechen
Speichern