Skip to content

Commit b9c3a8e

Browse files
authored
Drop support of Python 3.6 (#351)
* Update README.md * Update DESCRIPTION * Update Readme.rst * Update setup.py * Update main.yml
1 parent 4a018f7 commit b9c3a8e

File tree

5 files changed

+3
-11
lines changed

5 files changed

+3
-11
lines changed

.github/workflows/main.yml

-7
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,6 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
include:
25-
- os: ubuntu-latest
26-
container: ubuntu:trusty
27-
python_version: 3.6
28-
- os: macos-latest
29-
python_version: 3.6
30-
- os: windows-2016
31-
python_version: 3.6
3225
- os: ubuntu-latest
3326
container: ubuntu:trusty
3427
python_version: 3.7

R-package/DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ BugReports: https://github.com/RGF-team/rgf/issues
88
URL: https://github.com/RGF-team/rgf/tree/master/R-package
99
Description: Regularized Greedy Forest wrapper of the 'Regularized Greedy Forest' <https://github.com/RGF-team/rgf/tree/master/python-package> 'python' package, which also includes a Multi-core implementation (FastRGF) <https://github.com/RGF-team/rgf/tree/master/FastRGF>.
1010
License: MIT + file LICENSE
11-
SystemRequirements: Python (>= 3.6), rgf_python, scikit-learn (>= 0.18.0), scipy, numpy. Detailed installation instructions for each operating system can be found in the README file.
11+
SystemRequirements: Python (>= 3.7), rgf_python, scikit-learn (>= 0.18.0), scipy, numpy. Detailed installation instructions for each operating system can be found in the README file.
1212
Depends:
1313
R(>= 3.2.0)
1414
Imports:

R-package/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The **RGF** package is a wrapper of the [Regularized Greedy Forest (RGF)](https:
3535

3636
<br>
3737

38-
* Python (>= 3.6)
38+
* Python (>= 3.7)
3939

4040

4141
<br>

python-package/Readme.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Examples of using FastRGF estimators could be found `here <https://github.com/RG
5454
Software Requirements
5555
---------------------
5656

57-
- Python (>= 3.6)
57+
- Python (>= 3.7)
5858
- joblib
5959
- scikit-learn (>= 0.18)
6060

python-package/setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,6 @@ def run(self):
389389
'Operating System :: POSIX',
390390
'Operating System :: Unix',
391391
'Programming Language :: Python :: 3',
392-
'Programming Language :: Python :: 3.6',
393392
'Programming Language :: Python :: 3.7',
394393
'Programming Language :: Python :: 3.8',
395394
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)