Skip to content

Commit

Permalink
Merge pull request #93 from TheJacksonLaboratory/G3-328-release-genew…
Browse files Browse the repository at this point in the history
…eaver-api-v-0-8-0

G3-328: Update requirements and Release version 0.8.0
  • Loading branch information
bergsalex authored Aug 15, 2024
2 parents 151ce1b + dc6096c commit aecc848
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 60 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/_format-lint-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,17 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ inputs.python-version }}
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
if [[ "$RUNNER_OS" == "macOS" ]]; then
echo "/Users/runner/.local/bin:$PATH" >> $GITHUB_PATH
fi
- name: Configure Poetry
run: poetry config virtualenvs.create false
- name: Install Black and Ruff
run: pip install black ruff
run: poetry install --only dev
- name: Run Ruff Linter
run: ruff check src/ tests/
run: ruff src/ tests/
- name: Run Black Formatter
run: black src/ tests/
run: black --check src/ tests/
118 changes: 62 additions & 56 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "geneweaver-api"
version = "0.8.0a5"
version = "0.8.0"
description = "The Geneweaver API"
authors = [
"Alexander Berger <[email protected]>",
Expand Down

0 comments on commit aecc848

Please sign in to comment.