Skip to content

Commit

Permalink
Pinned tableauhyperapi. Updated release (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd committed Apr 14, 2022
1 parent 98d75f4 commit 25a67e4
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pandas tableauhyperapi
python -m pip install pandas "tableauhyperapi<0.0.14567"
- name: Build extensions
run: |
python setup.py build_ext --inplace
Expand All @@ -59,7 +59,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pandas tableauhyperapi
python -m pip install pandas "tableauhyperapi<0.0.14567"
- name: Build extensions
run: |
python setup.py build_ext --inplace
Expand All @@ -85,7 +85,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pandas tableauhyperapi
python -m pip install pandas "tableauhyperapi<0.0.14567"
- name: Build extensions
run: |
python setup.py build_ext --inplace
Expand All @@ -106,7 +106,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install "pandas<1.3.0" tableauhyperapi
python -m pip install "pandas<1.3.0" "tableauhyperapi<0.0.14567"
- name: Build extensions
run: |
python setup.py build_ext --inplace
Expand All @@ -128,7 +128,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install "pandas<1.3.0" tableauhyperapi
python -m pip install "pandas<1.3.0" "tableauhyperapi<0.0.14567"
- name: Build extensions
run: |
python setup.py build_ext --inplace
Expand All @@ -149,7 +149,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install "pandas<1.3.0" tableauhyperapi
python -m pip install "pandas<1.3.0" "tableauhyperapi<0.0.14567"
- name: Build extensions
run: |
python setup.py build_ext --inplace
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
mkdir temp
cd temp
python -m pip install --upgrade pip
python -m pip install numpy pandas tableauhyperapi pytest # TODO: only pytest
python -m pip install numpy pandas "tableauhyperapi<0.0.14567" pytest # TODO: only pytest
python -m pip install pantab --no-index -f ../wheelhouse
python -c "import pantab; pantab.test()"
cd ..
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools wheel tableauhyperapi numpy
python -m pip install setuptools wheel "tableauhyperapi<0.0.14567" numpy
- name: Build wheels
run: |
python setup.py bdist_wheel
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools wheel tableauhyperapi numpy
python -m pip install setuptools wheel "tableauhyperapi<0.0.14567" numpy
- name: Build wheels
run: |
python setup.py bdist_wheel
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# -- Project information -----------------------------------------------------

project = "pantab"
copyright = "2019-2021, Will Ayd, innobi, LLC"
copyright = "2019-2022, Will Ayd, innobi, LLC"
author = "Will Ayd, innobi, LLC"
release = "2.1.0"
release = "2.1.1"


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 4 additions & 0 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ pantab
changelog
support

.. important::

pantab is currently incompatible with tableauhyperapi>=0.0.14567. For details and status updates see `GitHub issue #145 <https://github.com/innobi/pantab/issues/145>`_

What is it?
-----------

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__ = "2.0.0"
__version__ = "2.1.1."

import libpantab # type: ignore

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

setup(
name="pantab",
version="2.1.0",
version="2.1.1",
description="Converts pandas DataFrames into Tableau Hyper Extracts and back",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -56,7 +56,7 @@
package_data={"": ["*.h"], "pantab.tests": ["data/*"]},
data_files=[("", ["LICENSE.txt", "README.md"])],
python_requires=">=3.8",
install_requires=["pandas>=1.0.0", "tableauhyperapi", "numpy"],
install_requires=["pandas>=1.0.0", "tableauhyperapi<0.0.14567", "numpy"],
extras_require={"dev": ["pytest"]},
ext_modules=[pantab_module],
)

0 comments on commit 25a67e4

Please sign in to comment.