-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #239 from DontShaveTheYak/develop
Release 0.6.2
- Loading branch information
Showing
37 changed files
with
18,389 additions
and
244 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 |
---|---|---|
|
@@ -17,14 +17,14 @@ jobs: | |
steps: | ||
|
||
- name: Checkout Code | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.1.1 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Python 3.9 | ||
uses: actions/[email protected].0 | ||
- name: Setup Python 3.11 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version: '3.9' | ||
python-version: '3.11' | ||
architecture: x64 | ||
|
||
- name: Install dependencies | ||
|
@@ -72,12 +72,12 @@ jobs: | |
needs: tag | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.1.1 | ||
|
||
- name: Setup Python 3.9 | ||
uses: actions/[email protected].0 | ||
- name: Setup Python 3.11 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version: '3.9' | ||
python-version: '3.11' | ||
architecture: x64 | ||
|
||
- name: Setup Poetry | ||
|
@@ -104,7 +104,7 @@ jobs: | |
needs: [tag, publish] | ||
steps: | ||
- name: Create Draft Release | ||
uses: release-drafter/release-drafter@v5.24.0 | ||
uses: release-drafter/release-drafter@v5.25.0 | ||
if: github.base_ref == 'develop' | ||
with: | ||
tag: ${{needs.tag.outputs.tag}} | ||
|
@@ -114,7 +114,7 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Create Release | ||
uses: release-drafter/release-drafter@v5.24.0 | ||
uses: release-drafter/release-drafter@v5.25.0 | ||
if: github.base_ref == 'master' | ||
with: | ||
tag: ${{needs.tag.outputs.tag}} | ||
|
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 |
---|---|---|
|
@@ -12,15 +12,15 @@ on: | |
jobs: | ||
single: | ||
runs-on: ubuntu-latest | ||
name: Python 3.9 | ||
name: Python 3.11 | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.1.1 | ||
|
||
- name: Setup Latest Python | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version: 3.9 | ||
python-version: 3.11 | ||
architecture: x64 | ||
|
||
- name: Setup Poetry | ||
|
@@ -32,10 +32,10 @@ jobs: | |
run: pip install nox nox_poetry coverage[toml] | ||
|
||
- name: Run Tests | ||
run: nox -s tests -p 3.9 | ||
run: nox -s tests -p 3.11 | ||
|
||
- name: Combine Coverage reports | ||
run: nox -s coverage -p 3.9 | ||
run: nox -s coverage -p 3.11 | ||
|
||
- name: Convert Coverage | ||
run: coverage xml --fail-under=0 | ||
|
@@ -52,14 +52,14 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.8", "3.10"] # 3.9 is done in the job above | ||
python-version: ["3.8", "3.9", "3.10", "3.12"] # 3.11 is done in the job above | ||
name: Python ${{ matrix.python-version }} | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.1.1 | ||
|
||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
|
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,4 +1,5 @@ | ||
3.9.12 | ||
3.7.13 | ||
3.8.13 | ||
3.10.4 | ||
3.11.6 | ||
3.12.0 | ||
3.10.13 | ||
3.9.18 | ||
3.8.18 |
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,2 +1,2 @@ | ||
requests==2.31.0 | ||
semver==3.0.1 | ||
semver==3.0.2 |
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
Oops, something went wrong.