Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jkjkil4 committed May 27, 2024
1 parent 6a4529d commit dd9bae8
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Publish Release

on:
release:
types: [released]

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12

- name: Install dependencies
run: python -m pip install --upgrade flit

- name: Publish release to pypi
env:
FLIT_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
flit publish --pypirc .pypirc
2 changes: 2 additions & 0 deletions .pypirc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[pypi]
username = __token__
2 changes: 1 addition & 1 deletion janim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
'''a library for simple animation effects'''

__version__ = '1.0.4'
__version__ = '1.1.0'

0 comments on commit dd9bae8

Please sign in to comment.