Skip to content

Commit fcfb109

Browse files
authored
Merge pull request #197 from corenting/tests_in_sdist
feat: include tests in sdist
2 parents bc8ab91 + 5fff7ad commit fcfb109

File tree

4 files changed

+21
-14
lines changed

4 files changed

+21
-14
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 2.2.4
2+
3+
- Include tests in sdist for easier packaging
4+
15
# Version 2.2.3
26

37
- Fix TypeError message when using `|=`. Thanks to [@ronshapiro](https://github.com/ronshapiro) for the [PR #66](https://github.com/corenting/immutabledict/pull/66)

immutabledict/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from collections import OrderedDict
44
from typing import Any, Dict, Iterable, Iterator, Mapping, Optional, Type, TypeVar
55

6-
__version__ = "2.2.3"
6+
__version__ = "2.2.4"
77

88
_K = TypeVar("_K")
99
_V = TypeVar("_V")

poetry.lock

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "immutabledict"
3-
version = "2.2.3"
3+
version = "2.2.4"
44
description = "Immutable wrapper around dictionaries (a fork of frozendict)"
55
authors = ["Corentin Garcia <corenting@gmail.com>"]
66
license = "MIT"
@@ -11,6 +11,9 @@ classifiers = [
1111
"Development Status :: 5 - Production/Stable",
1212
"Topic :: Software Development :: Libraries :: Python Modules"
1313
]
14+
include = [
15+
{ path = "tests", format = "sdist" }
16+
]
1417

1518
[tool.poetry.urls]
1619
"Changelog" = "https://github.com/corenting/immutabledict/blob/master/CHANGELOG.md"

0 commit comments

Comments
 (0)