Skip to content

Commit 441ad83

Browse files
authored
chore: drop support for python 3.6 and 3.7 (#227)
1 parent 3d58b58 commit 441ad83

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/prerelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
id: version
2020
run: echo ::set-output name=value::${GITHUB_REF#refs/*/}
2121

22-
- name: Setup Python 3.7
22+
- name: Setup Python 3.8
2323
uses: actions/setup-python@v4
2424
with:
25-
python-version: '3.7'
25+
python-version: '3.8'
2626

2727
- name: Install dependencies
2828
run: |

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v3
1717

18-
- name: Setup Python 3.7
18+
- name: Setup Python 3.8
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: '3.7'
21+
python-version: '3.8'
2222

2323
- name: Cache pip
2424
id: cache

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
keywords='data science ydata',
4343
url='https://github.com/ydataai/ydata-synthetic',
4444
license="https://github.com/ydataai/ydata-synthetic/blob/master/LICENSE",
45-
python_requires=">=3.6, <3.11",
45+
python_requires=">=3.8, <3.11",
4646
packages=find_namespace_packages('src'),
4747
package_dir={'':'src'},
4848
include_package_data=True,

0 commit comments

Comments
 (0)