Skip to content

Commit

Permalink
Release 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tlhr committed Aug 19, 2024
0 parents commit 6a80f85
Show file tree
Hide file tree
Showing 201 changed files with 230,127 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
### Description

### Checklist
If you're providing a new node for maize, please make sure of the following:
- [ ] My node has been placed in an appropriate subfolder, and exposed in the corresponding `__init__.py` file
- [ ] My node has tests (using `TestRig`, and testing a variety of inputs and parameters)
- [ ] My node is fully documented using [ReST syntax](https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html) and references if neccessary
- [ ] My code passes type-checking using `mypy --strict --explicit-package-bases`
- [ ] My code lints correctly
- [ ] My code has been formatted with `black`, using a `line-length` of 100
26 changes: 26 additions & 0 deletions .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Mypy

on: [push, workflow_dispatch]

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@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh |
bash -s -- --batch
conda env create -f env-dev.yml
conda run --name maize-dev pip install --no-deps .
conda run --name maize-dev pip install types-PyYAML types-toml
- name: Analysing the code with mypy
run: |
conda run --name maize-dev mypy --strict --explicit-package-bases maize/steps maize/utilities
25 changes: 25 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Pylint

on: [push, workflow_dispatch]

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@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh |
bash -s -- --batch
conda env create -f env-dev.yml
conda run --name maize-dev pip install --no-deps .
- name: Analysing the code with pylint
run: |
conda run --name maize-dev pylint --exit-zero maize/steps maize/utilities
37 changes: 37 additions & 0 deletions .github/workflows/test-docking.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Test-docking

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:

permissions:
contents: read

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@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh |
bash -s -- --batch
conda env create -v -f env-dev.yml
conda run --name maize-dev pip install --no-deps .
conda run --name maize-dev ./devtools/install_test_deps.sh
- name: Run docking test with pytest
run: |
conda run --name maize-dev pytest tests/test_docking.py
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.ipynb_checkpoints
.VSCodeCounter
__pycache__
*.egg-info
.coverage
.vscode
.pylintrc
.env
.*_cache
*_autosummary
coverage
docs/_build
docs/_static
docs/autosummary
docs/Makefile
docs/make.bat
/test-config.toml
test
testing.ipynb
deplicenses.txt
build
13 changes: 13 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Primary Authors
===============
- [Thomas Löhr](https://github.com/tlhr)
- Marco Klähn

Contributing Authors
====================
- Michele Assante
- Lili Cao
- Michael Dodds
- Jon Paul Janet
- Mikhail Kabeshov
- Alessandro Tibo
Loading

0 comments on commit 6a80f85

Please sign in to comment.