From 44a521a77ac18fe3333d9f31fdfccf1cb4b106e1 Mon Sep 17 00:00:00 2001 From: Nilton Frederico Teixeira <9078708+niltonfrederico@users.noreply.github.com> Date: Tue, 26 Sep 2023 22:47:44 -0300 Subject: [PATCH] refactor(package): removed tests folder from installable package --- CHANGELOG.md | 6 ++++++ setup.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba51057..2eaffea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [5.3.1] - 2023-08-07 + +### Changed + +- Removed tests folder from package. + ## [5.3.0] - 2023-08-07 ### Changed diff --git a/setup.py b/setup.py index 87c7748..48f1ee8 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="django-stomp", - version="5.3.0", + version="5.3.1", description="A simple implementation of STOMP with Django", long_description=README, long_description_content_type="text/markdown", @@ -19,7 +19,7 @@ author_email="Ricardo Baltazar , Willian Antunes ", license="MIT", url="https://github.com/juntossomosmais/django-stomp", - packages=find_packages(), + packages=find_packages(exclude=("tests","tests.*")), install_requires=["request-id-django-log==0.1.1", "stomp.py~=8.0", "tenacity~=8.0"], classifiers=[ "Programming Language :: Python",