Skip to content
This repository was archived by the owner on Dec 6, 2023. It is now read-only.

Commit bdcc9d4

Browse files
authored
Drop Python 3.6 support (#187)
* Update setup.py * Update main.yml * Update README.rst
1 parent 8413a18 commit bdcc9d4

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/main.yml

-4
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,12 @@ jobs:
2323
- macos-latest
2424
- windows-latest
2525
python_version:
26-
- '3.6'
2726
- '3.7'
2827
- '3.8'
2928
- '3.9'
3029
python_arch:
3130
- x64
3231
include:
33-
- os: windows-latest
34-
python_version: '3.6'
35-
python_arch: x86
3632
- os: windows-latest
3733
python_version: '3.7'
3834
python_arch: x86

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ penalty on the News20 dataset (c.f., `Blondel et al. 2013
6363
Dependencies
6464
------------
6565

66-
lightning requires Python >= 3.6, setuptools, Joblib, Numpy >= 1.12, SciPy >= 0.19 and
66+
lightning requires Python >= 3.7, setuptools, Joblib, Numpy >= 1.12, SciPy >= 0.19 and
6767
scikit-learn >= 0.19. Building from source also requires Cython and a working C/C++ compiler. To run the tests you will also need pytest.
6868

6969
Installation

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
match = re.search(r'__version__[ ]*=[ ]*[\"\'](?P<version>.+)[\"\']',
2727
f.read())
2828
VERSION = match.group('version').strip()
29-
MIN_PYTHON_VERSION = '3.6'
29+
MIN_PYTHON_VERSION = '3.7'
3030
with open('requirements.txt', encoding='utf-8') as f:
3131
REQUIREMENTS = [
3232
line.strip()

0 commit comments

Comments
 (0)