@@ -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 |
@@ -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: | | ||||
@@ -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 | ||||
@@ -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 | ||||
@@ -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: | | ||||
@@ -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' | ||||
@@ -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 }} | ||||
@@ -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 = [ | ||||
@@ -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" | ||||