Skip to content

Commit

Permalink
Bump version to 23w51a
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue committed Dec 22, 2023
1 parent 0528d29 commit 26defc5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install setuptools build wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PIP_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
python -m build
twine upload dist/*
4 changes: 2 additions & 2 deletions auto_editor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "23.46.1"
version = "23w46a"
__version__ = "23.51.1"
version = "23w51a"
11 changes: 11 additions & 0 deletions changelogs/changelog-23w51a.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 23w51

## What's Changed
- Upgrade pyav to 12.0.0
- Sources are now directly linked in the v3 format.
- Removed the `--source` and `--add` option
- Switch from setup.py to pyproject.toml

Remember to upgrade setuptools! `pip install -U setuptools`

**Full Changelog**: https://github.com/WyattBlue/auto-editor/compare/23w46a...23w51a
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ requires-python = ">=3.10"
dependencies = [
"numpy>=1.22.0",
"pillow==10.1.0",
"pyav==11.4.1",
"pyav==12.0.0",
"ae-ffmpeg==1.1.*",
]
keywords = [
Expand Down

0 comments on commit 26defc5

Please sign in to comment.