Skip to content

Commit d37a295

Browse files
v0.11.1 Release Preparation (#474)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 50e6089 commit d37a295

File tree

2 files changed

+40
-15
lines changed

2 files changed

+40
-15
lines changed

HISTORY.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,31 @@
11
# History
22

3-
### v0.11.0 - 2025-02-26
3+
### v0.11.1 - 2025-10-30
4+
5+
### New Features
6+
7+
* Make the _get_enable_gpu_value public - Issue [#466](https://github.com/sdv-dev/CTGAN/issues/466) by @R-Palazzo
8+
* Enable GPU usage for MacOS (using MPS) - Issue [#462](https://github.com/sdv-dev/CTGAN/issues/462) by @R-Palazzo
9+
10+
### Bugs Fixed
11+
12+
* All bump-version commands are failing - Issue [#439](https://github.com/sdv-dev/CTGAN/issues/439) by @amontanez24
13+
14+
### Documentation
15+
16+
* Update release documentation - Issue [#473](https://github.com/sdv-dev/CTGAN/issues/473) by @gsheni
17+
18+
### Internal
19+
20+
* Check pyproject for release candidate dependencies - Issue [#445](https://github.com/sdv-dev/CTGAN/issues/445) by @rwedge
21+
22+
### Maintenance
23+
24+
* Remove support for Python 3.8 - Issue [#469](https://github.com/sdv-dev/CTGAN/issues/469) by @fealho
25+
* Add workflow to release CTGAN on PyPI - Issue [#451](https://github.com/sdv-dev/CTGAN/issues/451) by @gsheni
26+
* Update python set up step in workflows to use latest python version - Issue [#416](https://github.com/sdv-dev/CTGAN/issues/416) by @frances-h
27+
28+
## v0.11.0 - 2025-02-26
429

530
### New Features
631

static_code_analysis.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Run started:2025-02-25 21:10:33.223731
1+
Run started:2025-10-30 20:43:43.045588
22

33
Test results:
44
>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
@@ -55,35 +55,35 @@ Test results:
5555
Severity: Low Confidence: High
5656
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
5757
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b101_assert_used.html
58-
Location: ./ctgan/synthesizers/ctgan.py:60:8
59-
59 """Apply the Discriminator to the `input_`."""
60-
60 assert input_.size()[0] % self.pac == 0
61-
61 return self.seq(input_.view(-1, self.pacdim))
58+
Location: ./ctgan/synthesizers/ctgan.py:61:8
59+
60 """Apply the Discriminator to the `input_`."""
60+
61 assert input_.size()[0] % self.pac == 0
61+
62 return self.seq(input_.view(-1, self.pacdim))
6262

6363
--------------------------------------------------
6464
>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
6565
Severity: Low Confidence: High
6666
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
6767
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b101_assert_used.html
68-
Location: ./ctgan/synthesizers/ctgan.py:164:8
69-
163 ):
70-
164 assert batch_size % 2 == 0
71-
165
68+
Location: ./ctgan/synthesizers/ctgan.py:169:8
69+
168 ):
70+
169 assert batch_size % 2 == 0
71+
170
7272

7373
--------------------------------------------------
7474
>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
7575
Severity: Low Confidence: High
7676
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
7777
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b101_assert_used.html
78-
Location: ./ctgan/synthesizers/tvae.py:100:4
79-
99
80-
100 assert st == recon_x.size()[1]
81-
101 KLD = -0.5 * torch.sum(1 + logvar - mu**2 - logvar.exp())
78+
Location: ./ctgan/synthesizers/tvae.py:101:4
79+
100
80+
101 assert st == recon_x.size()[1]
81+
102 KLD = -0.5 * torch.sum(1 + logvar - mu**2 - logvar.exp())
8282

8383
--------------------------------------------------
8484

8585
Code scanned:
86-
Total lines of code: 1414
86+
Total lines of code: 1459
8787
Total lines skipped (#nosec): 0
8888
Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0
8989

0 commit comments

Comments
 (0)