Skip to content

Commit

Permalink
python@3.10 and flake8@4.0 support (#221)
Browse files Browse the repository at this point in the history
* python@3.10 and flake8@4.0 support

* python@3.10 and flake8@4.0 support

* python@3.10 and flake8@4.0 support
  • Loading branch information
sobolevn committed Oct 19, 2021
1 parent a94dfde commit a60e487
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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: |
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a60e487

Please sign in to comment.