Skip to content

Commit 87ff1b5

Browse files
authored
upgraded to python 3.8 (#7)
1 parent 6524b82 commit 87ff1b5

File tree

4 files changed

+282
-259
lines changed

4 files changed

+282
-259
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: CI Build
22
on:
33
push:
4-
branches: [ master, develop, fix/*, feature/* ]
4+
branches:
5+
- '**'
56
pull_request:
67
branches: [ master ]
78
jobs:
@@ -10,10 +11,10 @@ jobs:
1011
runs-on: ubuntu-latest
1112
steps:
1213
- uses: actions/checkout@v1
13-
- name: Set up Python 3.7
14+
- name: Set up Python 3.8
1415
uses: actions/setup-python@v1
1516
with:
16-
python-version: 3.7
17+
python-version: 3.8
1718
- name: Install pipenv
1819
env:
1920
PIPENV_NOSPIN: 'true'

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ matplotlib = "*"
1717
jupyterlab = "*"
1818

1919
[requires]
20-
python_version = "3.7"
20+
python_version = "3.8"

0 commit comments

Comments
 (0)