From 6625718f5ac70df6e866680f429b4d61d7b70e27 Mon Sep 17 00:00:00 2001 From: Alexandre Teles Date: Fri, 30 Sep 2022 19:44:17 -0300 Subject: [PATCH] fix: inform py version to CodeQL --- .github/workflows/dev.yml | 2 +- .github/workflows/features.yml | 2 +- .github/workflows/pull_requests.yml | 2 +- README.md | 2 +- setup.py | 3 +++ 5 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 setup.py 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