Skip to content

Commit a60e487

Browse files
authored
1 parent a94dfde commit a60e487

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

Diff for: .github/workflows/test.yml

+5-9
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.6, 3.7, 3.8, 3.9]
15+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
1616

1717
steps:
1818
- uses: actions/checkout@v2
@@ -23,12 +23,9 @@ jobs:
2323

2424
- name: Install poetry
2525
run: |
26-
curl -sSL \
27-
"https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py" | python
28-
29-
# Adding `poetry` to `$PATH`:
30-
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
31-
26+
pip install -U pip
27+
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
28+
echo "${HOME}/.poetry/bin" >> $GITHUB_PATH
3229
- name: Set up cache
3330
uses: actions/cache@v2
3431
with:
@@ -37,9 +34,8 @@ jobs:
3734
- name: Install dependencies
3835
run: |
3936
poetry config virtualenvs.in-project true
40-
poetry install
41-
4237
poetry run pip install -U pip
38+
poetry install
4339
4440
- name: Run tests
4541
run: |

Diff for: CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
We follow Semantic Versions since the `0.1.0` release.
44

55

6+
## 1.2.0
7+
8+
### Features
9+
10+
- Adds `[email protected]` support
11+
- Adds `python3.10` support
12+
13+
614
## 1.1.0
715

816
### Features

0 commit comments

Comments
 (0)