Skip to content

Commit

Permalink
1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MainKronos committed Aug 6, 2023
1 parent 4fa97b8 commit 471bb93
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 23 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,25 @@ name: Publish to PyPI
on:
release:
types: [created]
workflow_dispatch:

jobs:
deploy:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with unittest
run: python -m unittest discover -v -s ./tests -p test_*.py

deploy:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/python-test.yml

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="animeworld",
version="1.6.2",
version="1.6.3",
author="MainKronos",
description="AnimeWorld UNOFFICIAL API",
long_description=long_description,
Expand Down

0 comments on commit 471bb93

Please sign in to comment.