diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index ab4ecc1..938d679 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -38,7 +38,7 @@ jobs: path: reports/flake8/ security_checks: - needs: pytest + needs: flake8 runs-on: ubuntu-latest name: Security check steps: diff --git a/.github/workflows/features.yml b/.github/workflows/features.yml index 5879ec3..d0a2df1 100644 --- a/.github/workflows/features.yml +++ b/.github/workflows/features.yml @@ -39,7 +39,7 @@ jobs: path: reports/flake8/ security_checks: - needs: pytest + needs: flake8 runs-on: ubuntu-latest name: Security check steps: diff --git a/.github/workflows/pull_requests.yml b/.github/workflows/pull_requests.yml index 5dfa49c..73d3c64 100644 --- a/.github/workflows/pull_requests.yml +++ b/.github/workflows/pull_requests.yml @@ -34,7 +34,7 @@ jobs: path: reports/flake8/ security_checks: - needs: pytest + needs: flake8 runs-on: ubuntu-latest name: Security check steps: diff --git a/README.md b/README.md index 32b80c7..97d597a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![License: AGPLv3](https://img.shields.io/github/license/revanced/revanced-releases-api) ![GitHub last commit](https://img.shields.io/github/last-commit/revanced/revanced-releases-api) -![GitHub Workflow Status](https://img.shields.io/github/workflow/status/revanced/revanced-releases-api/Main%20build) +![GitHub Workflow Status](https://img.shields.io/github/workflow/status/revanced/revanced-releases-api/Build%20dev%20branch) This is a simple API that returns the latest ReVanced releases, patches and contributors. diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a4ea96c --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +from setuptools import setup + +setup(name="revanced-releases-api", python_requires='>=3.10.6') \ No newline at end of file