diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be616776..c9071a00 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,10 +7,10 @@ on: description: "Tag" required: true default: "1.x.x" - build_windows: - description: "Build Windows binary" + skip_binary_build: + description: "Skip binary build" required: true - default: "true" + default: "false" type: choice options: - true @@ -45,12 +45,10 @@ jobs: strategy: matrix: os: [ubuntu-20.04, windows-2019] + if: ${{ github.event.inputs.skip_binary_build == 'false' }} runs-on: ${{ matrix.os }} name: Create binary on ${{ matrix.os }} steps: - - name: Skip windows build - if: matrix.os == 'windows-2019' && inputs.build_windows == 'false' - run: exit 0 - name: Clone client uses: actions/checkout@v3 - name: Setup Node 16 diff --git a/pyproject.toml b/pyproject.toml index 5ff4920b..be1ed00f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "" authors = ["geoffrey45 "] [tool.poetry.dependencies] -python = ">=3.10,<3.12" +python = ">=3.11,<3.12" Flask = "^2.0.2" Flask-Cors = "^3.0.10" requests = "^2.27.1"