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
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __generate_table(table):
header.extend(rowSpannedHeader)
for val in currentRow.cells:

headerCellDetail = list(currentRow.header_cell_details._values.values())[index]
headerCellDetail = list(currentRow.header_cell_details.values())[index]
colspan = headerCellDetail.colspan
colspan = 1 if colspan <= 1 else colspan
rowspan = headerCellDetail.rowspan
Expand Down
4 changes: 2 additions & 2 deletions python/src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setuptools.setup(
name="fds.protobuf.stach.extensions",
version="1.3.2",
version="1.3.3",
author="Analytics API",
author_email="[email protected]",
description="FactSet stach extensions",
Expand All @@ -14,5 +14,5 @@
install_requires=REQUIRES,
include_package_data=True,
license="Apache License 2.0",
python_requires=">=3.6",
python_requires=">=3.9",
)
6 changes: 3 additions & 3 deletions python/tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
astroid==2.7.3
colorama==0.4.4
fds.protobuf.stach==1.0.0
fds.protobuf.stach.v2==1.0.2
fds.protobuf.stach==1.0.1
fds.protobuf.stach.v2==1.0.4
isort==5.9.3
lazy-object-proxy==1.6.0
mccabe==0.6.1
platformdirs==2.3.0
protobuf==3.16.0
protobuf==6.32.0
pylint==2.10.2
python-dateutil==2.8.2
pytz==2021.1
Expand Down