Skip to content

Commit 821a493

Browse files
Do not package typing_tests (#1118)
1 parent f6f1b4d commit 821a493

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

docs/release_notes.rst

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
Release Notes
44
=============
55

6+
v5.3.2
7+
----------
8+
* Prevent ``typing_tests`` from being installed into site-packages (#1118)
9+
10+
Contributors to this release:
11+
12+
* @musicinmybrain
13+
14+
615
v5.3.1
716
----------
817
* Fixed issue introduced in 5.3.0: using :py:class:`~pynamodb.connection.table.TableConnection` directly (not through a model)

pynamodb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
"""
88
__author__ = 'Jharrod LaFon'
99
__license__ = 'MIT'
10-
__version__ = '5.3.1'
10+
__version__ = '5.3.2'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
setup(
1010
name='pynamodb',
1111
version=__import__('pynamodb').__version__,
12-
packages=find_packages(exclude=('tests', 'tests.integration',)),
12+
packages=find_packages(exclude=('examples', 'tests', 'typing_tests', 'tests.integration',)),
1313
url='http://jlafon.io/pynamodb.html',
1414
author='Jharrod LaFon',
1515
author_email='[email protected]',

0 commit comments

Comments
 (0)