Skip to content

Commit

Permalink
2.0 release (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd authored Dec 19, 2019
1 parent 0dc969a commit 12aff91
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 48 deletions.
9 changes: 9 additions & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
^^^^^^^^^

Pantab 0.2.0 (2019-12-19)
=========================

Features
--------

- Improved performance when reading data from Hyper extracts (#34)


0.1.1 (2019-12-06)
==================

Expand Down
2 changes: 1 addition & 1 deletion pantab/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.1"
__version__ = "0.2.0"


from ._reader import frame_from_hyper, frames_from_hyper
Expand Down
42 changes: 0 additions & 42 deletions pantab/dtypes.h

This file was deleted.

1 change: 0 additions & 1 deletion pantab/newsfragments/34.feature

This file was deleted.

2 changes: 1 addition & 1 deletion pantab/dtypes.c → pantab/pantab.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "dtypes.h"
#include "pantab.h"

static DTYPE stringToDtype(const char *str) {
for (Py_ssize_t i = 0;
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,22 @@

writer_module = Extension(
"libwriter",
sources=["pantab/dtypes.c", "pantab/_writermodule.c"],
sources=["pantab/pantab.c", "pantab/_writermodule.c"],
library_dirs=[str(dll_path.parent.resolve())],
libraries=[dll_path.stem.replace("lib", "")],
)

reader_module = Extension(
"libreader",
sources=["pantab/dtypes.c", "pantab/_readermodule.c"],
sources=["pantab/pantab.c", "pantab/_readermodule.c"],
library_dirs=[str(dll_path.parent.resolve())],
libraries=[dll_path.stem.replace("lib", "")],
)


setup(
name="pantab",
version="0.1.1",
version="0.2.0",
description="Converts pandas DataFrames into Tableau Hyper Extracts",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 12aff91

Please sign in to comment.