-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into refactor/cli-oop
- Loading branch information
Showing
104 changed files
with
4,646 additions
and
2,554 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
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,5 +1,4 @@ | ||
pip==22.3 | ||
poetry==1.2.2 | ||
virtualenv==20.16.5 | ||
nox==2022.8.7 | ||
nox-poetry==1.0.1 | ||
pip==22.3.1 | ||
poetry==1.3.1 | ||
nox==2022.11.21 | ||
nox-poetry==1.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,10 @@ jobs: | |
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3.0.2 | ||
uses: actions/checkout@v3.2.0 | ||
|
||
- name: Set up Python | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version: "3.10" | ||
|
||
|
@@ -47,7 +47,7 @@ jobs: | |
file_glob: true | ||
|
||
- name: Publish | ||
uses: pypa/gh-action-pypi-publish@v1.5.1 | ||
uses: pypa/gh-action-pypi-publish@v1.6.4 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_SECRET_TOKEN }} |
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 |
---|---|---|
|
@@ -29,20 +29,23 @@ jobs: | |
- { session: tests, python-version: "3.8", os: "ubuntu-latest" } | ||
- { session: tests, python-version: "3.9", os: "ubuntu-latest" } | ||
- { session: tests, python-version: "3.10", os: "ubuntu-latest" } | ||
- { session: tests, python-version: "3.11", os: "ubuntu-latest" } | ||
- { session: tests, python-version: "3.7", os: "macos-latest" } | ||
- { session: tests, python-version: "3.8", os: "macos-latest" } | ||
- { session: tests, python-version: "3.9", os: "macos-latest" } | ||
- { session: tests, python-version: "3.10", os: "macos-latest" } | ||
- { session: tests, python-version: "3.11", os: "macos-latest" } | ||
- { session: tests, python-version: "3.7", os: "windows-latest" } | ||
- { session: tests, python-version: "3.8", os: "windows-latest" } | ||
- { session: tests, python-version: "3.9", os: "windows-latest" } | ||
- { session: tests, python-version: "3.10", os: "windows-latest" } | ||
- { session: tests, python-version: "3.11", os: "windows-latest" } | ||
- { session: doctest, python-version: "3.10", os: "ubuntu-latest" } | ||
- { session: mypy, python-version: "3.8", os: "ubuntu-latest" } | ||
|
||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v3.0.2 | ||
uses: actions/checkout@v3.2.0 | ||
|
||
- name: Install Poetry | ||
env: | ||
|
@@ -52,7 +55,7 @@ jobs: | |
poetry --version | ||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
|
@@ -80,7 +83,7 @@ jobs: | |
- name: Upload coverage data | ||
if: always() && (matrix.session == 'tests') | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
name: coverage-data | ||
path: ".coverage.*" | ||
|
@@ -100,7 +103,7 @@ jobs: | |
|
||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v3.0.2 | ||
uses: actions/checkout@v3.2.0 | ||
|
||
- name: Install Poetry | ||
env: | ||
|
@@ -110,7 +113,7 @@ jobs: | |
poetry --version | ||
- name: Setup Python 3.10 | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version: '3.10' | ||
architecture: x64 | ||
|
@@ -142,15 +145,15 @@ jobs: | |
needs: tests | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v3.0.2 | ||
uses: actions/checkout@v3.2.0 | ||
|
||
- name: Install Poetry | ||
run: | | ||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry | ||
poetry --version | ||
- name: Set up Python | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version: '3.10' | ||
cache: 'pip' | ||
|
@@ -162,7 +165,7 @@ jobs: | |
pip --version | ||
- name: Download coverage data | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
name: coverage-data | ||
|
||
|
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 |
---|---|---|
|
@@ -35,19 +35,23 @@ jobs: | |
pull-requests: write # to create and update PRs | ||
|
||
steps: | ||
- uses: actions/checkout@v3.0.2 | ||
- uses: actions/checkout@v3.2.0 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set repo file permissions | ||
run: | | ||
sudo chown -R $USER:$USER .git/objects | ||
- name: Set up Python | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
python-version: "3.10" | ||
architecture: x64 | ||
|
||
- name: Bump version | ||
id: cz-bump | ||
uses: commitizen-tools/[email protected].0 | ||
uses: commitizen-tools/[email protected].1 | ||
with: | ||
increment: ${{ github.event.inputs.bump != 'auto' && github.event.inputs.bump || '' }} | ||
prerelease: ${{ github.event.inputs.prerelease != 'none' && github.event.inputs.prerelease || '' }} | ||
|
@@ -89,4 +93,3 @@ jobs: | |
base: main | ||
labels: release | ||
assignees: "${{ github.actor }}" | ||
token: ${{ secrets.MELTYBOT_GITHUB_AUTH_TOKEN }} |
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
Oops, something went wrong.