Skip to content

Commit bf308ec

Browse files
Merge branch 'main' into issue-2757-improve-error-messaging-when-downloading-demos
2 parents bd28e4e + cdfaeb7 commit bf308ec

File tree

4 files changed

+25
-19
lines changed

4 files changed

+25
-19
lines changed

HISTORY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release Notes
22

3+
## v1.31.0 - 2025-12-15
4+
5+
### New Features
6+
7+
* Add bucket and credentials parameter to download_demo - Issue [#2747](https://github.com/sdv-dev/SDV/issues/2747) by @amontanez24
8+
39
## v1.30.0 - 2025-12-05
410

511
### New Features

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ namespaces = false
142142
version = {attr = 'sdv.__version__'}
143143

144144
[tool.bumpversion]
145-
current_version = "1.30.1.dev0"
145+
current_version = "1.31.1.dev0"
146146
parse = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?'
147147
serialize = [
148148
'{major}.{minor}.{patch}.{release}{candidate}',

sdv/__init__.py

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

77
__author__ = 'DataCebo, Inc.'
88
__email__ = '[email protected]'
9-
__version__ = '1.30.1.dev0'
9+
__version__ = '1.31.1.dev0'
1010

1111

1212
import sys

static_code_analysis.txt

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Run started:2025-12-05 21:45:23.824802
1+
Run started:2025-12-15 22:18:07.057179
22

33
Test results:
44
>> Issue: [B110:try_except_pass] Try, Except, Pass detected.
@@ -36,33 +36,33 @@ Test results:
3636
Severity: Low Confidence: High
3737
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
3838
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b112_try_except_continue.html
39-
Location: ./sdv/datasets/demo.py:97:8
40-
96 matches.append(key)
41-
97 except Exception:
42-
98 continue
43-
99
39+
Location: ./sdv/datasets/demo.py:105:8
40+
104 matches.append(key)
41+
105 except Exception:
42+
106 continue
43+
107
4444

4545
--------------------------------------------------
4646
>> Issue: [B112:try_except_continue] Try, Except, Continue detected.
4747
Severity: Low Confidence: High
4848
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
4949
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b112_try_except_continue.html
50-
Location: ./sdv/datasets/demo.py:158:8
51-
157
52-
158 except Exception:
53-
159 continue
54-
160
50+
Location: ./sdv/datasets/demo.py:166:8
51+
165
52+
166 except Exception:
53+
167 continue
54+
168
5555

5656
--------------------------------------------------
5757
>> Issue: [B112:try_except_continue] Try, Except, Continue detected.
5858
Severity: Low Confidence: High
5959
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
6060
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b112_try_except_continue.html
61-
Location: ./sdv/datasets/demo.py:437:8
62-
436
63-
437 except Exception:
64-
438 continue
65-
439
61+
Location: ./sdv/datasets/demo.py:469:8
62+
468
63+
469 except Exception:
64+
470 continue
65+
471
6666

6767
--------------------------------------------------
6868
>> Issue: [B306:blacklist] Use of insecure and deprecated function (mktemp).
@@ -121,7 +121,7 @@ Test results:
121121
--------------------------------------------------
122122

123123
Code scanned:
124-
Total lines of code: 17163
124+
Total lines of code: 17245
125125
Total lines skipped (#nosec): 0
126126
Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0
127127

0 commit comments

Comments
 (0)