Compare commits

..

No commits in common. "4eeaa4f603a211c489280ca02c215ad2ad6d4ab9" and "b20d442057067bd8f5a153c7c2e105f36d1400d3" have entirely different histories.

3 changed files with 179 additions and 216 deletions

View file

@ -30,14 +30,11 @@ jobs:
- name: build package
run: hatch build --clean
- name: create release notes
run: bash get_release_notes.sh latest
- name: read changelog
id: changelog
uses: juliangruber/read-file-action@v1
with:
path: ./RELEASENOTES.md
path: ./CHANGELOG.md
- name: create gitea release
uses: https://gitea.com/actions/release-action@main

View file

@ -1,20 +0,0 @@
name: run scheduled tests
on:
issue_comment:
schedule:
- cron: "0 20 * * 6"
jobs:
check-code-py311:
runs-on: python311
steps:
- name: checkout code
uses: actions/checkout@v3
- name: install hatch
run: pip install -U hatch
- name: run tests
run: hatch run default:test

View file

@ -9,20 +9,6 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Add support for more sites
## [2.4.0] - 2024-02-01
### Fixed
- Some issues with Python3.8 compatibility
### Changed
- Moved build system from woodpecker-ci to gitea actions
- Updated some dependencies
- Updated the docker image
- Switched from formatter/linter `black` to `ruff`
- Switches typing from `pyright` to `mypy`
## [2.3.1] - 2023-03-12
### Added