Skip to content

Commit

Permalink
Merge pull request #197 from corenting/tests_in_sdist
Browse files Browse the repository at this point in the history
feat: include tests in sdist
  • Loading branch information
corenting committed Apr 2, 2023
2 parents bc8ab91 + 5fff7ad commit fcfb109
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 2.2.4

- Include tests in sdist for easier packaging

# Version 2.2.3

- Fix TypeError message when using `|=`. Thanks to [@ronshapiro](https://github.com/ronshapiro) for the [PR #66](https://github.com/corenting/immutabledict/pull/66)
Expand Down
2 changes: 1 addition & 1 deletion immutabledict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from collections import OrderedDict
from typing import Any, Dict, Iterable, Iterator, Mapping, Optional, Type, TypeVar

__version__ = "2.2.3"
__version__ = "2.2.4"

_K = TypeVar("_K")
_V = TypeVar("_V")
Expand Down
24 changes: 12 additions & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "immutabledict"
version = "2.2.3"
version = "2.2.4"
description = "Immutable wrapper around dictionaries (a fork of frozendict)"
authors = ["Corentin Garcia <corenting@gmail.com>"]
license = "MIT"
Expand All @@ -11,6 +11,9 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules"
]
include = [
{ path = "tests", format = "sdist" }
]

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

0 comments on commit fcfb109

Please sign in to comment.