Skip to content

Commit 63cd6c9

Browse files
authored
Remove py37 support (sdv-dev#304)
* Remove py37 * missing 37
1 parent 801db25 commit 63cd6c9

File tree

7 files changed

+8
-9
lines changed

7 files changed

+8
-9
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ['3.7', '3.8', '3.9', '3.10']
13+
python-version: ['3.8', '3.9', '3.10']
1414
os: [ubuntu-latest, macos-latest, windows-latest]
1515
steps:
1616
- uses: actions/checkout@v1

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-20.04
1111
steps:
1212
- uses: actions/checkout@v1
13-
- name: Set up Python 3.8
13+
- name: Set up Python 3.9
1414
uses: actions/setup-python@v2
1515
with:
16-
python-version: 3.8
16+
python-version: 3.9
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip

.github/workflows/minimum.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ['3.7', '3.8', '3.9', '3.10']
13+
python-version: ['3.8', '3.9', '3.10']
1414
os: [ubuntu-latest, macos-latest, windows-latest]
1515
steps:
1616
- uses: actions/checkout@v1

.github/workflows/readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ['3.7', '3.8', '3.9', '3.10']
13+
python-version: ['3.8', '3.9', '3.10']
1414
os: [ubuntu-latest, macos-latest] # skip windows bc rundoc fails
1515
steps:
1616
- uses: actions/checkout@v1

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ['3.7', '3.8', '3.9', '3.10']
13+
python-version: ['3.8', '3.9', '3.10']
1414
os: [ubuntu-latest, macos-latest, windows-latest]
1515
steps:
1616
- uses: actions/checkout@v1

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@
8686
'License :: Free for non-commercial use',
8787
'Natural Language :: English',
8888
'Programming Language :: Python :: 3',
89-
'Programming Language :: Python :: 3.7',
9089
'Programming Language :: Python :: 3.8',
9190
'Programming Language :: Python :: 3.9',
9291
'Programming Language :: Python :: 3.10',
@@ -111,7 +110,7 @@
111110
keywords='ctgan CTGAN',
112111
name='ctgan',
113112
packages=find_packages(include=['ctgan', 'ctgan.*']),
114-
python_requires='>=3.7,<3.11',
113+
python_requires='>=3.8,<3.11',
115114
setup_requires=setup_requires,
116115
test_suite='tests',
117116
tests_require=tests_require,

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38-lint, py3{7,8,9,10}-{unit,integration,readme}
2+
envlist = py39-lint, py3{8,9,10}-{unit,integration,readme}
33

44
[testenv]
55
skipsdist = false

0 commit comments

Comments
 (0)