From 18faaa8c56628a917e450451ef047fe84752a234 Mon Sep 17 00:00:00 2001 From: Gunther Cox Date: Fri, 1 May 2020 17:50:44 -0400 Subject: [PATCH] Update package details --- .github/workflows/pythonpackage.yml | 39 ----------------------------- .gitignore | 20 --------------- mathparse/__init__.py | 2 +- 3 files changed, 1 insertion(+), 60 deletions(-) delete mode 100644 .github/workflows/pythonpackage.yml diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml deleted file mode 100644 index f995387..0000000 --- a/.github/workflows/pythonpackage.yml +++ /dev/null @@ -1,39 +0,0 @@ -# This workflow will install Python dependencies, run tests and lint with a variety of Python versions -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions - -name: Python package - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: [3.6, 3.7, 3.8] - - steps: - - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install flake8 pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Lint with flake8 - run: | - # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - name: Test with pytest - run: | - pytest diff --git a/.gitignore b/.gitignore index fb3d2a7..2cc45e0 100644 --- a/.gitignore +++ b/.gitignore @@ -49,17 +49,6 @@ coverage.xml *.mo *.pot -# Django stuff: -*.log -local_settings.py - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - # Sphinx documentation docs/_build/ @@ -72,9 +61,6 @@ target/ # pyenv .python-version -# celery beat schedule file -celerybeat-schedule - # dotenv .env @@ -82,11 +68,5 @@ celerybeat-schedule venv/ ENV/ -# Spyder project settings -.spyderproject - -# Rope project settings -.ropeproject - #IDEA settings .idea/ \ No newline at end of file diff --git a/mathparse/__init__.py b/mathparse/__init__.py index fea2344..1f29c37 100644 --- a/mathparse/__init__.py +++ b/mathparse/__init__.py @@ -2,7 +2,7 @@ mathparse is a library for solving mathematical equations contained in strings """ -__version__ = '0.1.4' +__version__ = '0.1.5' __author__ = 'Gunther Cox' __email__ = 'gunthercx@gmail.com' __url__ = 'https://github.com/gunthercox/mathparse'