Skip to content

Commit

Permalink
Support for python 3.7 for build and deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
shahsmit14 committed Nov 19, 2021
1 parent 27af096 commit 8c56ef7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.6'
python-version: '3.7'

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.6
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: '3.6'
python-version: '3.7'

- name: Cache Dependencies
id: cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.6
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: '3.6'
python-version: '3.7'

- name: Install dependencies
run: |
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ pandas==0.25.3
pykalman==0.9.5
scipy==1.2.3
statsmodels==0.10.2
scikit-learn==0.19.2
scikit-learn==0.24.2
decorator==5.1.0
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name='luminaire',
version='0.2.4',
version='0.3.0.dev1',

license='Apache License 2.0',

Expand All @@ -33,6 +33,7 @@
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
Expand Down

0 comments on commit 8c56ef7

Please sign in to comment.