Skip to content

Remove cchardet as it does not build on 3.11 and was dropped by aiohttp #15

Remove cchardet as it does not build on 3.11 and was dropped by aiohttp

Remove cchardet as it does not build on 3.11 and was dropped by aiohttp #15

Workflow file for this run

# The code has type annotations. Enforce correctness of those.
name: Mypy
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11']
steps:
- name: APT Update
run: sudo apt update
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies and Mypy
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install mypy
- name: Check code with Mypy
run: mypy salted/