Skip to content

Commit 8c56ef7

Browse files
committed
Support for python 3.7 for build and deploy
1 parent 27af096 commit 8c56ef7

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Python
1515
uses: actions/setup-python@v2
1616
with:
17-
python-version: '3.6'
17+
python-version: '3.7'
1818

1919
- name: Install dependencies
2020
run: |

.github/workflows/python-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v2
1515

16-
- name: Set up Python 3.6
16+
- name: Set up Python 3.7
1717
uses: actions/setup-python@v2
1818
with:
19-
python-version: '3.6'
19+
python-version: '3.7'
2020

2121
- name: Cache Dependencies
2222
id: cache

.github/workflows/python-publish.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@v2
1717

18-
- name: Set up Python 3.6
18+
- name: Set up Python 3.7
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: '3.6'
21+
python-version: '3.7'
2222

2323
- name: Install dependencies
2424
run: |

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ pandas==0.25.3
66
pykalman==0.9.5
77
scipy==1.2.3
88
statsmodels==0.10.2
9-
scikit-learn==0.19.2
9+
scikit-learn==0.24.2
10+
decorator==5.1.0

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
1616
name='luminaire',
17-
version='0.2.4',
17+
version='0.3.0.dev1',
1818

1919
license='Apache License 2.0',
2020

@@ -33,6 +33,7 @@
3333
'Development Status :: 4 - Beta',
3434
'License :: OSI Approved :: Apache Software License',
3535
'Programming Language :: Python :: 3.6',
36+
'Programming Language :: Python :: 3.7',
3637
'Operating System :: OS Independent',
3738
'Topic :: Scientific/Engineering :: Information Analysis',
3839
'Topic :: Software Development :: Libraries :: Python Modules',

0 commit comments

Comments
 (0)