Skip to content

Commit c055297

Browse files
committed
Change log, adjust build
1 parent 85e097c commit c055297

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
- '3.6'
3636
- '3.8'
3737
- '3.9'
38+
- '3.10'
3839
steps:
3940
- uses: actions/checkout@v2
4041

@@ -45,7 +46,7 @@ jobs:
4546
- uses: actions/cache@v2
4647
with:
4748
path: ~/.cache/pip
48-
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/*.txt') }}
49+
key: ${{ runner.os }}-pip-${{ hashFiles('**/poetry.lock') }}
4950
restore-keys: |
5051
${{ runner.os }}-pip-
5152

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changes
22
=======
33

4+
1.0.0 (2021-12-28)
5+
------------------
6+
7+
* Remove to django-enumfields
8+
* Use native django TextChoices
9+
* Bump minimal django version to 3.2
10+
411
0.2.2 (2021-12-28)
512
------------------
613

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ isolated_build = True
33
envlist =
44
lint
55
mypy
6-
{py36,py38,py39}-django3
6+
{py36,py38,py39,}-django3
77
{py38,py39,py310}-django4
88
skip_missing_interpreters = True
99

0 commit comments

Comments
 (0)