Skip to content

Commit

Permalink
Merge pull request #23 from thorgate/rel-3
Browse files Browse the repository at this point in the history
Release 3.0.0
  • Loading branch information
Jyrno42 authored May 9, 2022
2 parents 6b5b72e + 9edbba9 commit 5818ef5
Show file tree
Hide file tree
Showing 9 changed files with 671 additions and 558 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"

steps:
- uses: actions/checkout@v2
Expand All @@ -24,9 +28,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Add poetry
uses: abatilo/actions-poetry@v2.0.0
uses: abatilo/actions-poetry@v2.1.4
with:
poetry-version: "1.1"
poetry-version: "1.1.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9]
python-version:
- "3.10"

steps:
- uses: actions/checkout@v2
Expand All @@ -23,9 +24,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Add poetry
uses: abatilo/actions-poetry@v2.0.0
uses: abatilo/actions-poetry@v2.1.4
with:
poetry-version: 1.1
poetry-version: "1.1.13"
- name: Install dependencies
run: poetry install
- name: Build and publish
Expand Down
4 changes: 3 additions & 1 deletion .prospector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ignore-paths:
ignore-patterns:
- htmlcov/

pep8:
pycodestyle:
enable:
# This is the current list of error and warning codes from:
# https://github.com/PyCQA/pep8-naming
Expand Down Expand Up @@ -82,5 +82,7 @@ pep8:
pylint:
disable:
- unused-argument
- raise-missing-from
options:
max-line-length: 140
django-settings-module: dummy_settings
Loading

0 comments on commit 5818ef5

Please sign in to comment.