Skip to content

Commit

Permalink
Merge pull request #16 from billgreenwald/feat/billgreenwald/upgrade_…
Browse files Browse the repository at this point in the history
…to_3.0.0

Feat/billgreenwald/upgrade to 3.0.0
  • Loading branch information
billgreenwald committed Oct 10, 2022
2 parents ea7c116 + 6849a35 commit dabcf92
Show file tree
Hide file tree
Showing 230 changed files with 17,771 additions and 6,529 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/black.yml
@@ -0,0 +1,10 @@
name: black

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: psf/black@stable
27 changes: 27 additions & 0 deletions .github/workflows/pytest.yml
@@ -0,0 +1,27 @@
name: pytest

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
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
pip install pip install pytest-parametrization
- name: Test with pytest
run: |
pytest
1 change: 1 addition & 0 deletions .gitignore 100644 → 100755
Expand Up @@ -3,3 +3,4 @@
*.ipynb
*/.ipynb*
*/*/.ipynb*
__pycache__*
6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/pgltools.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

73 changes: 73 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file modified Dockerfile 100644 → 100755
Empty file.
19 changes: 0 additions & 19 deletions Module/LICENSE

This file was deleted.

10 changes: 0 additions & 10 deletions Module/PyGLtools.egg-info/PKG-INFO

This file was deleted.

28 changes: 0 additions & 28 deletions Module/PyGLtools.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion Module/PyGLtools.egg-info/dependency_links.txt

This file was deleted.

1 change: 0 additions & 1 deletion Module/PyGLtools.egg-info/not-zip-safe

This file was deleted.

1 change: 0 additions & 1 deletion Module/PyGLtools.egg-info/top_level.txt

This file was deleted.

0 comments on commit dabcf92

Please sign in to comment.