Skip to content

Commit

Permalink
Merge 447b358 into 1b96f12
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Aug 3, 2022
2 parents 1b96f12 + 447b358 commit b805fde
Show file tree
Hide file tree
Showing 7 changed files with 500 additions and 484 deletions.
2 changes: 1 addition & 1 deletion .verchew.ini
Expand Up @@ -6,7 +6,7 @@ version = GNU Make
[Python]

cli = python
version = 3.7 || 3.8 || 3.9 || 3.10
version = 3.8 || 3.9 || 3.10

[Poetry]

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,9 +1,14 @@
# Release Notes

## 2.0 (alpha)

- Dropped support for Python 3.7.

## 1.4.2 (2022-07-29)

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


## 1.4.1 (2022-07-28)

- Fixed exception when `TypedDict` is used, but schema is not yet supported.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -101,7 +101,7 @@ Objects can also be restored from the filesystem:

## Installation

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

```
$ pip install datafiles
Expand Down
3 changes: 1 addition & 2 deletions datafiles/tests/test_converters.py
Expand Up @@ -2,11 +2,10 @@

from dataclasses import dataclass
from enum import Enum
from typing import ByteString, Dict, List, Mapping, Optional, Set, Union
from typing import ByteString, Dict, List, Mapping, Optional, Set, TypedDict, Union

import pytest
from ruamel.yaml.scalarstring import LiteralScalarString
from typing_extensions import TypedDict

from datafiles import converters, settings

Expand Down
5 changes: 3 additions & 2 deletions docs/requirements.txt
@@ -1,4 +1,5 @@
jinja2==3.0.3; python_version >= "3.6"
markdown==3.3.4; python_version >= "3.6"
markdown==3.3.7; python_version >= "3.6"
mkdocs==1.3.1; python_version >= "3.6"
pygments==2.10.0; python_version >= "3.5"
jupyterlab-pygments==0.2.2; python_version >= "3.7"
pygments==2.12.0; python_version >= "3.6"

0 comments on commit b805fde

Please sign in to comment.