Skip to content

Commit

Permalink
Merge pull request #66 from linkml/issue-65
Browse files Browse the repository at this point in the history
Allow installation on Python 3.8
  • Loading branch information
pkalita-lbl authored Feb 9, 2024
2 parents 0bc0d5f + 54be2f7 commit 1f25084
Show file tree
Hide file tree
Showing 11 changed files with 81 additions and 246 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/doc_pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: snok/[email protected]

- name: install
run: poetry install -E docs
run: poetry install --only main,docs

- name: Build documentation.
run: |
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,12 @@ on:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11", "3.7" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
python-version: 3.11
- name: Install dependencies
run: |
pip install tox
Expand Down Expand Up @@ -78,7 +75,7 @@ jobs:
# install your root project, if required
#----------------------------------------------
- name: Install library
run: poetry install --no-interaction --extras refresh
run: poetry install --no-interaction

#----------------------------------------------
# coverage report
Expand Down
Loading

0 comments on commit 1f25084

Please sign in to comment.