Skip to content

Commit

Permalink
Merge pull request #135 from ImperialCollegeLondon/dependabot/pip/pan…
Browse files Browse the repository at this point in the history
…das-excel--2.1.1

Bump pandas[excel] from 2.0.3 to 2.1.1
  • Loading branch information
github-actions[bot] authored Oct 3, 2023
2 parents bebf412 + 2d9f3d5 commit e6d0988
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion datahub/opal.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def create_opal_frame() -> pd.DataFrame:
An initial Dataframe for the opal data with key frame 0
"""
df = pd.DataFrame(0, index=range(1), columns=list(opal_headers.keys()))
df["Time"] = pd.Timestamp(OPAL_START_DATE)
df["Time"] = pd.Timestamp(OPAL_START_DATE).as_unit("ns") # type: ignore[attr-defined] # noqa: E501

return df

Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ packaging==23.1
# black
# build
# pytest
pandas[excel]==2.0.3
pandas[excel]==2.1.1
# via datahub (pyproject.toml)
pandas-stubs==2.0.2.230605
# via datahub (pyproject.toml)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ openpyxl==3.1.2
# via pandas
orjson==3.9.2
# via datahub (pyproject.toml)
pandas[excel]==2.0.3
pandas[excel]==2.1.1
# via datahub (pyproject.toml)
pydantic==1.10.10
# via fastapi
Expand Down

0 comments on commit e6d0988

Please sign in to comment.