diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 48c70b6..1bd0d08 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 @@ -23,12 +23,9 @@ jobs: - name: Install poetry run: | - curl -sSL \ - "https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py" | python - - # Adding `poetry` to `$PATH`: - echo "$HOME/.poetry/bin" >> $GITHUB_PATH - + pip install -U pip + curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python - + echo "${HOME}/.poetry/bin" >> $GITHUB_PATH - name: Set up cache uses: actions/cache@v2 with: @@ -37,9 +34,8 @@ jobs: - name: Install dependencies run: | poetry config virtualenvs.in-project true - poetry install - poetry run pip install -U pip + poetry install - name: Run tests run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index d0a3271..a2313e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ We follow Semantic Versions since the `0.1.0` release. +## 1.2.0 + +### Features + +- Adds `flake8@4.0.0` support +- Adds `python3.10` support + + ## 1.1.0 ### Features