From 9ef71da2959f191f3d81bb88d3dd45ee87928463 Mon Sep 17 00:00:00 2001 From: Otto Fajardo Date: Wed, 9 Aug 2023 09:15:55 +0200 Subject: [PATCH] version 0.4.9 [skip ci] --- CITATION.cff | 2 +- MANIFEST.in | 1 + change_log.md | 6 +++++- docs/conf.py | 2 +- pyreadr/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 8012dc0..f344156 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,7 +5,7 @@ authors: given-names: "Otto" orcid: "https://orcid.org/0000-0002-3363-9287" title: "Pyreadr" -version: 0.4.8 +version: 0.4.9 doi: 10.5281/zenodo.7110170 date-released: 2018-12-28 url: "https://github.com/ofajardo/pyreadr" diff --git a/MANIFEST.in b/MANIFEST.in index fe92954..b033372 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,6 @@ include *.h recursive-include pyreadr/libs *.h +recursive-include pyreadr *.h include *.pyx recursive-include pyreadr *.pyx include *.pxd diff --git a/change_log.md b/change_log.md index 052aaf5..2d28485 100644 --- a/change_log.md +++ b/change_log.md @@ -1,4 +1,8 @@ -# 0.4.8 (github, pypi and conda: 2023.08.08) +# 0.4.9 (github, pypi and conda: 2023.08.09) +* conda forge of 0.4.8 failed due to missing file in source distribution, adding + file to manifest and releasing again, otherwise no changes. + +# 0.4.8 (github, pypi: 2023.08.08, no conda) * Updated code to work with Cython 3.0.0, earlier versions no longer supported. * Including dll files in pyreadr folder and putting them as package data for windows, this solves issue #72. For unix no package data meaning no dll files but also no diff --git a/docs/conf.py b/docs/conf.py index 9a01f95..ff24919 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '0.4.8' +release = '0.4.9' # -- General configuration --------------------------------------------------- diff --git a/pyreadr/__init__.py b/pyreadr/__init__.py index 7c2b71a..fb8c338 100644 --- a/pyreadr/__init__.py +++ b/pyreadr/__init__.py @@ -1,5 +1,5 @@ from .pyreadr import read_r, list_objects, write_rds, write_rdata, download_file from .custom_errors import PyreadrError, LibrdataError -__version__ = "0.4.8" +__version__ = "0.4.9" diff --git a/setup.py b/setup.py index 5c79490..cb212d6 100644 --- a/setup.py +++ b/setup.py @@ -84,7 +84,7 @@ short_description = "Reads/writes R RData and Rds files into/from pandas data frames." setup( name='pyreadr', - version='0.4.8', + version='0.4.9', ext_modules=cythonize([librdata], force=True), packages=["pyreadr"], include_package_data=include_package_data,