Skip to content

Commit

Permalink
Merge pull request #96 from hoverinc/update-package-version-requirement
Browse files Browse the repository at this point in the history
Updated package requirements - causing issues with the latest versions of Airflow
  • Loading branch information
JustinGrilli authored Sep 27, 2024
2 parents 41b5b8a + cad79bb commit ac8ecf8
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
long_description=readme,
long_description_content_type='text/markdown',
name="tableau_utilities",
version="2.2.11",
version="2.2.12",
requires_python=">=3.8",
packages=[
'tableau_utilities',
Expand All @@ -24,13 +24,14 @@
],
package_data={'tableau_utilities': ['tableau_file/*.yml']},
include_package_data=True,
install_requires=['xmltodict>=0.12.0,<1.0.0',
'pyyaml>=6.0,<7.0.0',
'requests>=2.27.1,<3.0.0',
'pandas>=1.4.1,<2.0.0',
'tabulate>=0.8.9,<1.0.0',
],
extras_require={"hyper": ['tableauhyperapi==0.0.18825']},
install_requires=[
'xmltodict>=0.12.0,<1.0.0',
'pyyaml>=6.0,<7.0.0',
'requests>=2.27.1,<3.0.0',
'pandas>=2.0.0,<3.0.0',
'tabulate>=0.8.9,<1.0.0',
],
extras_require={"hyper": ['tableauhyperapi<1.0.0']},
entry_points={
'console_scripts': [
'tableau_utilities = tableau_utilities.scripts.cli:main',
Expand Down

0 comments on commit ac8ecf8

Please sign in to comment.