Skip to content

Commit 016386a

Browse files
committed
Drop support for Python 3.7
1 parent 2f8c5d4 commit 016386a

6 files changed

Lines changed: 153 additions & 928 deletions

File tree

.verchew.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = GNU Make
66
[Python]
77

88
cli = python
9-
version = 3.7 || 3.8 || 3.9 || 3.10
9+
version = 3.8 || 3.9 || 3.10
1010

1111
[Poetry]
1212

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes
22

3+
## 2.0 (alpha)
4+
5+
- Dropped support for Python 3.7.
6+
37
## 1.4.3 (2022-08-19)
48

59
- Fixed handling of unparseable YAML files in manager methods.
@@ -8,6 +12,7 @@
812

913
- Fixed exception when `Union[int, float]` or `Union[str, ...]` is used.
1014

15+
1116
## 1.4.1 (2022-07-28)
1217

1318
- Fixed exception when `TypedDict` is used, but schema is not yet supported.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Objects can also be restored from the filesystem:
101101

102102
## Installation
103103

104-
Because datafiles relies on dataclasses and type annotations, Python 3.7+ is required. Install this library directly into an activated virtual environment:
104+
Install this library directly into an activated virtual environment:
105105

106106
```
107107
$ pip install datafiles

datafiles/tests/test_converters.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22

33
from dataclasses import dataclass
44
from enum import Enum
5-
from typing import ByteString, Dict, List, Mapping, Optional, Set, Union
5+
from typing import ByteString, Dict, List, Mapping, Optional, Set, TypedDict, Union
66

77
import pytest
88
from ruamel.yaml.scalarstring import LiteralScalarString
9-
from typing_extensions import TypedDict
109

1110
from datafiles import converters, settings
1211

0 commit comments

Comments
 (0)