Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: using newer Neo4j lib version! #24

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tc-messageBroker==1.6.7
sentry-sdk
rq
redis
tc-neo4j-lib==2.0.1
tc-neo4j-lib==2.0.3
pybars3
backoff==2.2.1
motor==3.5.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="tc-analyzer-lib",
version="1.4.6",
version="1.4.7",
author="Mohammad Amin Dadgar, TogetherCrew",
maintainer="Mohammad Amin Dadgar",
maintainer_email="dadgaramin96@gmail.com",
Expand Down
2 changes: 1 addition & 1 deletion tc_analyzer_lib/metrics/heatmaps/heatmaps.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ async def start(
heatmaps_results = []

index = 0
max_index = (analytics_date - datetime.now()).days
max_index = (datetime.now() - analytics_date).days
while analytics_date.date() < datetime.now().date():
start_day = analytics_date.replace(
hour=0, minute=0, second=0, microsecond=0
Expand Down
Loading