Skip to content

Commit 5feaec6

Browse files
committed
make release-tag: Merge branch 'main' into stable
2 parents dbed091 + 3c14cd7 commit 5feaec6

Some content is hidden

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

42 files changed

+1694
-942
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Bug report
33
about: Report an error that you found when using CTGAN
44
title: ''
5-
labels: bug, pending review
5+
labels: bug, new
66
assignees: ''
77

88
---

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Feature request
33
about: Request a new feature that you would like to see implemented in CTGAN
44
title: ''
5-
labels: new feature, pending review
5+
labels: new feature, new
66
assignees: ''
77

88
---

.github/ISSUE_TEMPLATE/question.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Question
33
about: Doubts about CTGAN usage
44
title: ''
5-
labels: question, pending review
5+
labels: question, new
66
assignees: ''
77

88
---

.github/workflows/integration.yml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,23 @@
11
name: Integration Tests
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
pull_request:
6+
types: [opened, reopened]
67

78
jobs:
8-
unit:
9+
integration:
910
runs-on: ${{ matrix.os }}
1011
strategy:
1112
matrix:
12-
python-version: [3.6, 3.7, 3.8, 3.9]
13-
os: [ubuntu-latest, macos-10.15, windows-latest]
13+
python-version: ['3.8', '3.9', '3.10', '3.11']
14+
os: [ubuntu-latest, macos-latest, windows-latest]
1415
steps:
1516
- uses: actions/checkout@v1
1617
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v2
1819
with:
1920
python-version: ${{ matrix.python-version }}
20-
- if: matrix.os == 'windows-latest'
21-
name: Install dependencies - Windows
22-
run: |
23-
python -m pip install --upgrade pip
24-
python -m pip install 'torch>=1.8,<2' -f https://download.pytorch.org/whl/cpu/torch/
25-
python -m pip install 'torchvision>=0.9.0,<1' -f https://download.pytorch.org/whl/cpu/torchvision/
2621
- name: Install dependencies
2722
run: |
2823
python -m pip install --upgrade pip

.github/workflows/lint.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
name: Style Checks
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
pull_request:
6+
types: [opened, reopened]
67

78
jobs:
89
lint:
9-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-20.04
1011
steps:
1112
- uses: actions/checkout@v1
12-
- name: Set up Python 3.8
13-
uses: actions/setup-python@v1
13+
- name: Set up Python 3.9
14+
uses: actions/setup-python@v2
1415
with:
15-
python-version: 3.8
16+
python-version: 3.9
1617
- name: Install dependencies
1718
run: |
1819
python -m pip install --upgrade pip

.github/workflows/minimum.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,23 @@
11
name: Unit Tests Minimum Versions
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
pull_request:
6+
types: [opened, reopened]
67

78
jobs:
89
minimum:
910
runs-on: ${{ matrix.os }}
1011
strategy:
1112
matrix:
12-
python-version: [3.6, 3.7, 3.8, 3.9]
13-
os: [ubuntu-latest, macos-10.15, windows-latest]
13+
python-version: ['3.8', '3.9', '3.10', '3.11']
14+
os: [ubuntu-latest, macos-latest, windows-latest]
1415
steps:
1516
- uses: actions/checkout@v1
1617
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v2
1819
with:
1920
python-version: ${{ matrix.python-version }}
20-
- if: matrix.os == 'windows-latest'
21-
name: Install dependencies - Windows
22-
run: |
23-
python -m pip install --upgrade pip
24-
python -m pip install 'torch==1.8' -f https://download.pytorch.org/whl/cpu/torch/
25-
python -m pip install 'torchvision==0.9.0' -f https://download.pytorch.org/whl/cpu/torchvision/
2621
- name: Install dependencies
2722
run: |
2823
python -m pip install --upgrade pip

.github/workflows/readme.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
name: Test README
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
pull_request:
6+
types: [opened, reopened]
67

78
jobs:
89
readme:
910
runs-on: ${{ matrix.os }}
1011
strategy:
1112
matrix:
12-
python-version: [3.6, 3.7, 3.8, 3.9]
13-
os: [ubuntu-latest, macos-10.15] # skip windows bc rundoc fails
13+
python-version: ['3.8', '3.9', '3.10', '3.11']
14+
os: [ubuntu-latest, macos-latest] # skip windows bc rundoc fails
1415
steps:
1516
- uses: actions/checkout@v1
1617
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v2
1819
with:
1920
python-version: ${{ matrix.python-version }}
2021
- name: Install dependencies

.github/workflows/unit.yml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,26 @@
11
name: Unit Tests
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
pull_request:
6+
types: [opened, reopened]
67

78
jobs:
89
unit:
910
runs-on: ${{ matrix.os }}
1011
strategy:
1112
matrix:
12-
python-version: [3.6, 3.7, 3.8, 3.9]
13-
os: [ubuntu-latest, macos-10.15, windows-latest]
13+
python-version: ['3.8', '3.9', '3.10', '3.11']
14+
os: [ubuntu-latest, macos-latest, windows-latest]
1415
steps:
1516
- uses: actions/checkout@v1
1617
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v2
1819
with:
1920
python-version: ${{ matrix.python-version }}
20-
- if: matrix.os == 'windows-latest'
21-
name: Install dependencies - Windows
22-
run: |
23-
python -m pip install --upgrade pip
24-
python -m pip install 'torch>=1.8,<2' -f https://download.pytorch.org/whl/cpu/torch/
25-
python -m pip install 'torchvision>=0.9.0,<1' -f https://download.pytorch.org/whl/cpu/torchvision/
2621
- name: Install dependencies
2722
run: |
2823
python -m pip install --upgrade pip
2924
python -m pip install invoke .[test]
3025
- name: Run unit tests
3126
run: invoke unit
32-
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.8
33-
name: Upload codecov report
34-
uses: codecov/codecov-action@v2

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

AUTHORS.rst

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1 @@
1-
Credits
2-
=======
3-
4-
Research and Development Lead
5-
-----------------------------
6-
7-
* Lei Xu <leix@mit.edu>
8-
9-
Contributors
10-
------------
11-
12-
* Carles Sala <csala@csail.mit.edu>
13-
* Kevin Kuo <kevinykuo@gmail.com>
1+
See: https://github.com/sdv-dev/CTGAN/graphs/contributors

0 commit comments

Comments
 (0)