-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v3.1.0: Bump python to 3.12 and update dependency versions (#111
) ## v3.1.0 - 2024-10-23 ### What's Changed **Full Changelog**: v3.0.0...v3.1.0 by @obervinov in #111 #### 🚀 Features * bump workflows to `2.0.2` * bump dependencies versions #### 💥 Breaking Changes * bump python version to `3.12` #### 🐛 Bug Fixes * other general bug fixes and improvements * fix not enough condition for `igtv` type of content for `Downloader` class * fix infinite loop in the `Downloader` class when type of content not supported in condition * #104 * #105
- Loading branch information
Showing
19 changed files
with
670 additions
and
668 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,21 @@ | ||
--- | ||
name: PR | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
- '*/*' | ||
- '**' | ||
- '!main' | ||
|
||
jobs: | ||
changelog: | ||
uses: obervinov/_templates/.github/workflows/changelog.yaml@v1.2.9 | ||
|
||
pylint: | ||
uses: obervinov/_templates/.github/workflows/pylint.yaml@v1.2.9 | ||
|
||
pytest: | ||
uses: obervinov/_templates/.github/workflows/pytest-with-vault.yaml@v1.2.9 | ||
|
||
pyproject: | ||
uses: obervinov/_templates/.github/workflows/pyproject.yaml@v1.2.9 | ||
name: PR | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
- '*/*' | ||
- '**' | ||
- '!main' | ||
|
||
pr: | ||
uses: obervinov/_templates/.github/workflows/pr.yaml@v1.2.9 | ||
jobs: | ||
pr: | ||
uses: obervinov/_templates/.github/workflows/pr.yaml@v2.0.2 | ||
|
||
pyproject: | ||
uses: obervinov/_templates/.github/workflows/pyproject.yaml@v2.0.2 | ||
|
||
build-pr-image: | ||
uses: obervinov/_templates/.github/workflows/docker.yaml@v1.2.9 | ||
needs: [changelog, pylint, pytest, pyproject] | ||
build-pr-image: | ||
uses: obervinov/_templates/.github/workflows/docker.yaml@v2.0.2 | ||
needs: [pr, pyproject] |
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,30 +1,19 @@ | ||
--- | ||
name: Release | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
types: | ||
- closed | ||
|
||
jobs: | ||
create-release: | ||
uses: obervinov/_templates/.github/workflows/release.yaml@v1.2.9 | ||
|
||
cleanup-untagged-images: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Delete untagged images from GitHub Container Registry | ||
continue-on-error: true | ||
uses: Chizkiyahu/delete-untagged-ghcr-action@v4 | ||
with: | ||
token: ${{ secrets.PAT_GHCR_CLEANUP }} | ||
package_name: 'pyinstabot-downloader' | ||
untagged_only: true | ||
except_untagged_multiplatform: false | ||
owner_type: 'user' | ||
|
||
# milestone: | ||
# uses: obervinov/_templates/.github/workflows/milestone.yaml@v1.2.9 | ||
# needs: [create-release] | ||
name: Release | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
types: | ||
- closed | ||
|
||
jobs: | ||
create-release: | ||
if: github.event.pull_request.merged == true | ||
uses: obervinov/_templates/.github/workflows/release.yaml@v2.0.2 | ||
|
||
build-release-image: | ||
if: github.event.pull_request.merged == true | ||
uses: obervinov/_templates/.github/workflows/docker.yaml@v2.0.2 | ||
needs: [create-release] |
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.