From 577600356a482e6e5ef309aec557cc1f7fda8b15 Mon Sep 17 00:00:00 2001 From: cshaley <6740446+cshaley@users.noreply.github.com> Date: Thu, 16 Nov 2023 14:32:50 -0600 Subject: [PATCH] add pyproject.toml to build artifact to meet pep517 --- CHANGELOG.rst | 6 +++++- CMakeLists.txt | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2e2efee10..82d20e966 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,12 +3,16 @@ Version history / changelog From version 2.0.0, turbodbc adapts semantic versioning. +Version 4.9.0 +------------- + +* Fix pip wheel missing pyproject.toml - support pep517 + Version 4.8.0 ------------- * Support ``pyarrow=14`` - Version 4.7.0 ------------- diff --git a/CMakeLists.txt b/CMakeLists.txt index a1b54e1ee..2544e5f65 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,6 +30,6 @@ if(BUILD_TESTING) endif() install( - FILES setup.py setup.cfg MANIFEST.in Makefile LICENSE README.md CHANGELOG.rst + FILES setup.py setup.cfg MANIFEST.in Makefile LICENSE README.md CHANGELOG.rst pyproject.toml DESTINATION . ) diff --git a/setup.py b/setup.py index 1c2153a52..424c3aa25 100644 --- a/setup.py +++ b/setup.py @@ -255,7 +255,7 @@ def get_extension_modules(): setup( name="turbodbc", - version="4.8.0", + version="4.9.0", description="turbodbc is a Python DB API 2.0 compatible ODBC driver", long_description=long_description, long_description_content_type="text/markdown",