Skip to content

Commit 6cf6ac9

Browse files
authored
Merge pull request #53 from jpmorganchase/feature/tz-fix
Feature/tz fix
2 parents d4399d4 + 0bfa636 commit 6cf6ac9

16 files changed

Lines changed: 29 additions & 17 deletions

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.1] - 2024-06-07
9+
10+
* project folder rename
11+
* minor fix in the upload internals
812

913
## [1.1.0] - 2024-06-06
1014

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyfusion"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
edition = "2021"
55

66

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edit_uri: fusion/
55
repo_name: jpmorganchase/fusion
66
docs_dir: docs
77
watch:
8-
- python/fusion
8+
- py_src/fusion
99

1010
nav:
1111
- Home: index.md
@@ -63,7 +63,7 @@ plugins:
6363
- include-markdown
6464
- mkdocstrings:
6565
watch:
66-
- python/fusion
66+
- py_src/fusion
6767
- search:
6868
lang: en
6969

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Fusion Devs"""
44
__email__ = "fusion_developers@jpmorgan.com"
5-
__version__ = "1.1.0"
5+
__version__ = "1.1.1"
66

77
from fusion.authentication import FusionCredentials
88
from fusion.fs_sync import fsync
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,9 @@ def from_dict(credentials: dict[str, Any]) -> "FusionCredentials":
339339
password = None
340340
bearer_token = credentials["bearer_token"]
341341
bearer_token_expiry = (
342-
pd.to_datetime(credentials.get("bearer_token_expiry")) # type: ignore
342+
pd.to_datetime(credentials.get("bearer_token_expiry"), utc=True) # type: ignore
343343
if credentials.get("bearer_token_expiry")
344-
else None
344+
else datetime.now(tz=timezone.utc)
345345
)
346346
bearer_token_expirable = credentials.get("bearer_token_expirable")
347347
if isinstance(bearer_token_expirable, str):

0 commit comments

Comments
 (0)