Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/actions/windows_actions/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ runs:
using: "composite"
steps:
- name: Checkout libiconv
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: kiyolee/libiconv-win-build
ref: dff1030d222ba934e0f4a9cdab9c34134f072f68 # v1.18
path: libiconv-win-build
persist-credentials: false

- name: Checkout zlib
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: kiyolee/zlib-win-build
ref: 30623e05e64fe4b97f2073ddaf8d3ba0e99d7249
path: zlib-win-build
persist-credentials: false

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
uses: microsoft/setup-msbuild@v3

- name: Build libiconv
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.13"

Expand Down
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: "Pyreadstat"
version: 1.3.4
version: 1.3.5
doi: 10.5281/zenodo.6612282
date-released: 2018-09-24
url: "https://github.com/Roche/pyreadstat"
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The pyreadstat package as a whole is distributed under Apache License
Vesrion 2 (see below).
Version 2 (see below).

The pyreadstat package also includes the following open source software
components:
Expand Down
8 changes: 7 additions & 1 deletion change_log.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# 1.3.4 (github, pypi and conda 2026.05.15)
# 1.3.5 (github, pypi and conda 2026.05.19)
* Readstat sources updated to commit 3add3a5eaac6df24d938beffb9148792e362d9ef
* date, datetime and time formats are now used without precision, decreasing the
need to add new formats manually to the list
* Reading up to microseconds for datetime

# 1.3.4 (github, pypi and conda 2026.04.15)
* Refactored pyreadstat.pyx to pyreadstat.py solves #299
* Added env variable PYREADSTAT_LINK_ICONV to link iconv at compiling time
* Adding typing annotations solves #299
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 = '1.3.4'
release = '1.3.5'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions pyreadstat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from ._readstat_parser import ReadstatError, PyreadstatError
from .pyfunctions import set_value_labels, set_catalog_to_sas

__version__ = "1.3.4"
__version__ = "1.3.5"

__all__ = (
"read_sav",
Expand All @@ -42,4 +42,4 @@
"PyreadstatError",
"set_value_labels",
"set_catalog_to_sas",
)
)
Loading