Skip to content

Commit 4631847

Browse files
bdipteshMadhuTangududependabot[bot]
authored
v0.5.0_testing_stable (#31)
* v0.5.0 changelog: - Added Bates & Granger method in TimeSeries module - Added Prophet module - Performance tweaks in metrics and haversine methods --------- Co-authored-by: MadhuTangudu <madhu.tangudu@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3819445 commit 4631847

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+23639
-5982
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ body:
4949
label: Version
5050
description: What version of our product are you running?
5151
options:
52-
- v0.4.1 (Default)
52+
- v0.5.0 (Default)
53+
- v0.4.1
5354
- v0.4.0
5455
validations:
5556
required: true

.github/ISSUE_TEMPLATE/feature_request.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ body:
6868
label: Version
6969
description: What version of our product are you running?
7070
options:
71-
- v0.4.1 (Default)
71+
- v0.5.0 (Default)
72+
- v0.4.1
7273
- v0.4.0
7374
validations:
7475
required: true

.github/ISSUE_TEMPLATE/maintenance_request.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ body:
2727
label: Version
2828
description: What version of our product are you running?
2929
options:
30-
- v0.4.1 (Default)
30+
- v0.5.0 (Default)
31+
- v0.4.1
3132
- v0.4.0
3233
validations:
3334
required: true

.github/workflows/linter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
# - Install python dependencies
66
# - Run linter
77
#
8-
# Version: 0.1.0
8+
# Version: 0.1.1
99
#
1010
# Author: Diptesh
1111
#
12-
# Date: Jan 20, 2022
12+
# Date: Feb 14, 2024
1313
# =============================================================================
1414

1515
name: linter
@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix:
40-
python-version: [3.7]
40+
python-version: ['3.10']
4141

4242
steps:
4343
- uses: actions/checkout@v2

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
# - Install python dependencies
66
# - Run tests
77
#
8-
# Version: 0.1.0
8+
# Version: 0.1.1
99
#
1010
# Author: Diptesh
1111
#
12-
# Date: Jan 20, 2022
12+
# Date: Feb 14, 2024
1313
# =============================================================================
1414

1515
name: tests
@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix:
40-
python-version: [3.7]
40+
python-version: ['3.10']
4141

4242
steps:
4343
- uses: actions/checkout@v2

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2022, Diptesh
3+
Copyright (c) 2024, Diptesh
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
1. [Transportation problem](./mllib/lib/opt.py) - integer programming
2828
1. Time series
2929
1. [ARIMA](./mllib/lib/timeseries.py)
30-
1. [Prophet](./mllib/lib/prophet.py)
31-
1. [General additive models](./mllib/lib/gam.py)
30+
1. [Prophet](./mllib/lib/prophet_model.py)
31+
1. [Bates & Granger](./mllib/lib/timeseries.py)
3232
1. [Pull request guidelines](./.github/PULL_REQUEST_TEMPLATE.md)
3333
1. [Initial setup](./README.md#initial-setup)
3434
1. [Unit tests](./README.md#run-unit-tests-and-pylint-ratings)
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)