From 79d574b4e410c218a9148de8b04c8c14302d19a6 Mon Sep 17 00:00:00 2001 From: wwakabobik Date: Tue, 30 Jan 2024 14:21:04 +0100 Subject: [PATCH 1/3] v0.4.3 --- requirements.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/requirements.txt b/requirements.txt index 6927c12..998ff9a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,6 @@ +# async +asyncio==3.4.3 +aiohttp==3.9.3 # TTS gtts==2.5.1 pyttsx4==3.0.15 From cb7db5e4065392f4ecf6b95093eb61e3f22d1da0 Mon Sep 17 00:00:00 2001 From: wwakabobik Date: Tue, 30 Jan 2024 14:25:10 +0100 Subject: [PATCH 2/3] v0.4.3 --- .github/workflows/linters.yml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 370bd1c..08d79b5 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11"] steps: - name: Checkout uses: actions/checkout@v3 diff --git a/requirements.txt b/requirements.txt index 998ff9a..e674fac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ # async asyncio==3.4.3 -aiohttp==3.9.3 +aiohttp>=3.8.6 # TTS gtts==2.5.1 pyttsx4==3.0.15 From 4c9a87f5c14a2c9383a5cfdfa1eba568227a0145 Mon Sep 17 00:00:00 2001 From: wwakabobik Date: Tue, 30 Jan 2024 14:28:51 +0100 Subject: [PATCH 3/3] v0.4.3 --- .github/workflows/linters.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 08d79b5..8efc258 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -16,11 +16,11 @@ jobs: python-version: ["3.10", "3.11"] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies