Skip to content

Commit

Permalink
version 0.4.9 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ofajardo committed Aug 9, 2023
1 parent 71e1adc commit 9ef71da
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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"
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
include *.h
recursive-include pyreadr/libs *.h
recursive-include pyreadr *.h
include *.pyx
recursive-include pyreadr *.pyx
include *.pxd
Expand Down
6 changes: 5 additions & 1 deletion change_log.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyreadr/__init__.py
Original file line number Diff line number Diff line change
@@ -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"

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9ef71da

Please sign in to comment.