diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 0dcb116..e67b5d0 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -17,7 +17,7 @@ jobs: python-version: ["3.9","3.10","3.11"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v3 with: diff --git a/.pylintrc b/.pylintrc deleted file mode 100644 index b313c03..0000000 --- a/.pylintrc +++ /dev/null @@ -1,7 +0,0 @@ -[BASIC] -# Good variable names which should always be accepted, separated by a comma -good-names=i,j,k -variable-naming-style=camelCase -argument-naming-style=camelCase - -disable=len-as-condition \ No newline at end of file diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 46c38e1..0000000 --- a/requirements.txt +++ /dev/null @@ -1,3 +0,0 @@ -matplotlib -numpy -pandas diff --git a/requirements_dev.txt b/requirements_dev.txt deleted file mode 100644 index a281637..0000000 --- a/requirements_dev.txt +++ /dev/null @@ -1,7 +0,0 @@ --r requirements.txt - -pylint -pytest -flake8 -coverage -coveralls \ No newline at end of file diff --git a/setup.py b/setup.py deleted file mode 100644 index 6068493..0000000 --- a/setup.py +++ /dev/null @@ -1,3 +0,0 @@ -from setuptools import setup - -setup()