Skip to content

Commit 7897cfc

Browse files
author
Siddhant Pathak
authored
Merge pull request #24 from siddhantpathakk/development
Development
2 parents 76c8dd2 + 27f6074 commit 7897cfc

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

.github/workflows/python-app.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
# This workflow will install Python dependencies, run tests and lint with a single version of Python
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
33

4-
name: Python Syntax and Linting check
4+
name: Code Lint
55

66
on:
77
push:
88
branches: [ "main" ]
9-
pull_request:
10-
branches: [ "main" ]
119

1210
permissions:
1311
contents: read
@@ -34,6 +32,6 @@ jobs:
3432
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3533
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3634
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
37-
- name: Test with pytest
38-
run: |
39-
pytest
35+
# - name: Test with pytest
36+
# run: |
37+
# pytest

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ cycler==0.11.0
3333
Cython==3.0.0b3
3434
DateTime==5.1
3535
debugpy==1.6.7
36-
decorator==5.1.1
36+
decorator<5.0
3737
defusedxml==0.7.1
3838
deprecation==2.1.0
3939
dm-tree==0.1.8
@@ -47,7 +47,7 @@ fonttools==4.25.0
4747
fqdn==1.5.1
4848
frozendict==2.3.8
4949
gast==0.4.0
50-
google-auth==2.21.0
50+
google-auth
5151
google-auth-oauthlib==1.0.0
5252
google-pasta==0.2.0
5353
grpcio==1.56.0
@@ -61,8 +61,8 @@ httpx==0.24.1
6161
hyperframe==5.2.0
6262
idna==2.10
6363
inflection==0.5.1
64-
ipykernel==6.25.0
65-
ipython==8.14.0
64+
ipykernel
65+
ipython
6666
ipython-genutils==0.2.0
6767
ipywidgets==8.1.0
6868
isoduration==20.11.0
@@ -105,7 +105,7 @@ nbclient==0.8.0
105105
nbconvert==7.7.3
106106
nbformat==5.9.2
107107
nest-asyncio==1.5.7
108-
notebook==7.0.2
108+
notebook
109109
notebook_shim==0.2.3
110110
numexpr==2.8.4
111111
numpy==1.23.5
@@ -125,7 +125,7 @@ Pillow==9.4.0
125125
platformdirs==3.10.0
126126
plotly==5.15.0
127127
ply==3.11
128-
pooch==1.7.0
128+
pooch<1.7
129129
prometheus-client==0.17.1
130130
prompt-toolkit==3.0.39
131131
protobuf==4.23.3
@@ -150,7 +150,7 @@ pyzmq==25.1.0
150150
qtconsole==5.4.3
151151
QtPy==2.3.1
152152
referencing==0.30.2
153-
requests==2.31.0
153+
requests
154154
requests-oauthlib==1.3.1
155155
rfc3339-validator==0.1.4
156156
rfc3986==1.5.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22
import os
33

4-
VERSION = '1.1.3'
4+
VERSION = '1.1.3.1'
55

66
DESCRIPTION = 'Tensorflow ML'
77

0 commit comments

Comments
 (0)