Skip to content

Commit

Permalink
Version 1.3.0 (#153)
Browse files Browse the repository at this point in the history
* Version 1.3.0

* Fix CI

* Fix CI
  • Loading branch information
sobolevn authored Oct 5, 2022
1 parent a68e8f9 commit b590872
Show file tree
Hide file tree
Showing 6 changed files with 445 additions and 562 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ trim_trailing_whitespace = true
end_of_line = lf
indent_style = space
insert_final_newline = true
indent_size = 2

[*.py]
indent_size = 4
15 changes: 5 additions & 10 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', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v3
Expand All @@ -24,21 +24,16 @@ jobs:
- name: Install poetry
run: |
curl -sSL \
"https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py" | python -
"https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py" | python
echo "${HOME}/.poetry/bin" >> $GITHUB_PATH
# Adding `poetry` to `$PATH`:
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
- name: Set up cache
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
- 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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
We follow Semantic Versions since the `0.1.0` release.


## Version 1.3.0

### Features

- Drops `python3.6` support


## Version 1.2.0

### Features
Expand Down
Loading

0 comments on commit b590872

Please sign in to comment.