Skip to content

Commit

Permalink
Merge pull request #2 from climateintelligence/dev
Browse files Browse the repository at this point in the history
Develop the prototype
  • Loading branch information
nilshempelmann authored Mar 22, 2024
2 parents e76bb58 + 70515c9 commit d3bfebf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
Expand All @@ -32,8 +32,12 @@ jobs:
run: make test
- name: Lint with flake8 ⚙️
run: make lint
if: matrix.python-version == 3.7
if: matrix.python-version == 3.9
- name: Install documentation dependencies
run: |
if [ -f requirements_docs.txt ]; then pip install -r requirements_docs.txt; fi
if: matrix.python-version == 3.9
- name: Build docs 🏗️
run: make docs
if: matrix.python-version == 3.7
if: matrix.python-version == 3.9

3 changes: 3 additions & 0 deletions requirements_docs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
sphinx
nbsphinx
ipython
6 changes: 3 additions & 3 deletions tests/test_hawk.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

import pytest

from click.testing import CliRunner
from click.testing import CliRunner # noqa: F401

import hawk
from hawk import cli
import hawk # noqa: F401
from hawk import cli # noqa: F401


@pytest.fixture
Expand Down

0 comments on commit d3bfebf

Please sign in to comment.