diff options
author | Alexandre Flament <alex@al-f.net> | 2021-12-23 10:33:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-23 10:33:23 +0100 |
commit | 69747d5cb30ee01f52d68b3fa3a7f3a160153ba5 (patch) | |
tree | c128bb8ba92d3290910ce050a3d717c79a35809b | |
parent | fe751b0ee8af955390ed4caf56e2c9b267f5caa3 (diff) | |
parent | cb1b6686f0c7f73ff4b8d4302921a4ca1a9db8c8 (diff) | |
download | searxng-69747d5cb30ee01f52d68b3fa3a7f3a160153ba5.tar.gz searxng-69747d5cb30ee01f52d68b3fa3a7f3a160153ba5.zip |
Merge pull request #646 from return42/drop-py36
[ci] drop Python 3.6
-rw-r--r-- | .github/workflows/integration.yml | 2 | ||||
-rw-r--r-- | requirements.txt | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 3919b0194..8b8680688 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-20.04] - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10"] steps: - name: Checkout uses: actions/checkout@v2 diff --git a/requirements.txt b/requirements.txt index 189630dbd..66c8c8ec4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,8 +9,7 @@ python-dateutil==2.8.2 pyyaml==6.0 httpx[http2]==0.19.0 Brotli==1.0.9 -uvloop==0.16.0; python_version >= '3.7' -uvloop==0.14.0; python_version < '3.7' +uvloop==0.16.0 httpx-socks[asyncio]==0.4.1 langdetect==1.0.9 setproctitle==1.2.2 |