From e787452e0f7e58df6ab451d8a17cc5942961cfb1 Mon Sep 17 00:00:00 2001 From: Ralph Rassweiler Date: Mon, 17 Jun 2024 09:56:24 -0300 Subject: [PATCH] Hotfix package (#363) * fix: package --- CHANGELOG.md | 3 +++ Makefile | 1 + setup.py | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39f0b110..635672a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ Preferably use **Added**, **Changed**, **Removed** and **Fixed** topics in each ## [Unreleased] +## [1.3.2](https://github.com/quintoandar/butterfree/releases/tag/1.3.2) +* Fix publish script ([#360](https://github.com/quintoandar/butterfree/pull/362)) + ## [1.3.1](https://github.com/quintoandar/butterfree/releases/tag/1.3.1) * Timestamp NTZ available ([#360](https://github.com/quintoandar/butterfree/pull/360)) diff --git a/Makefile b/Makefile index bf9ccd64..db9b561b 100644 --- a/Makefile +++ b/Makefile @@ -146,6 +146,7 @@ package-name: .PHONY: package ## build butterfree package wheel package: + @PYTHONPATH=. pip3 install wheel @PYTHONPATH=. python -m setup sdist bdist_wheel .PHONY: update-docs diff --git a/setup.py b/setup.py index 3f35533c..2a6672ed 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import find_packages, setup __package_name__ = "butterfree" -__version__ = "1.3.1" +__version__ = "1.3.2" __repository_url__ = "https://github.com/quintoandar/butterfree" with open("requirements.txt") as f: