Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update libraries to DWDataReader_v4_2_0_25 #63

Merged
merged 9 commits into from
Sep 8, 2023
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
22 changes: 22 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# appveyor.yml - https://www.appveyor.com/docs/lang/python
---
image:
- Visual Studio 2019
#- Ubuntu

environment:
matrix:
- TOXENV: py27 # https://devguide.python.org/devcycle/#end-of-life-branches
- TOXENV: py37
- TOXENV: py310

build: false

install:
# - py --list
# - python -m ensurepip --upgrade
# - python -m pip install tox
- pip install tox

test_script:
- python -m tox
Binary file modified dwdatareader/DWDataReaderLib.dll
Binary file not shown.
Binary file modified dwdatareader/DWDataReaderLib.so
Binary file not shown.
Binary file modified dwdatareader/DWDataReaderLib64.dll
Binary file not shown.
Binary file modified dwdatareader/DWDataReaderLib64.so
Binary file not shown.
2 changes: 1 addition & 1 deletion dwdatareader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
print(ch.name, ch.series().mean())
"""
__all__ = ['DWError', 'DWFile', 'getVersion']
__version__ = '0.15.3'
__version__ = '0.15.4'

DLL = None # module variable accessible to other classes
encoding = 'ISO-8859-1' # default encoding
Expand Down
2 changes: 1 addition & 1 deletion test_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def test_dataframe(self):
"""Read all channel data as a single DataFrame."""
with dw.open(self.d7dname) as d7d:
self.assertFalse(d7d.closed, 'd7d did not open')
self.assertEqual((18771, 20), d7d.dataframe().shape)
self.assertEqual((18770, 20), d7d.dataframe().shape)

def test_encoding_uft8(self):
""" Check that encoding is set correcly """
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[tox]
envlist = py27,py36,py37,py38,py39,py10
requires = virtualenv<20.22.0
envlist = py27,py37,py10
[testenv]
# install testing framework
# ... or install anything else you might need here
Expand Down