Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/actions/checkout-4
Browse files Browse the repository at this point in the history
  • Loading branch information
rkingsbury authored Sep 6, 2023
2 parents 2d412cf + 6e27a98 commit 2c86cb8
Show file tree
Hide file tree
Showing 28 changed files with 1,766 additions and 148 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/ubuntu-latest_py3.10.txt
pip install -r requirements-optional.txt
pip install -r requirements/ubuntu-latest_py3.10_extras.txt
pip install -e .
pip install -r requirements-docs.txt
- name: Generate changelog
uses: charmixer/auto-changelog-action@v1
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/${{ matrix.os }}_py${{ matrix.python-version }}.txt
pip install -r requirements-testing.txt
pip install -r requirements-optional.txt
pip install -r requirements/${{ matrix.os }}_py${{ matrix.python-version }}_extras.txt
- name: Test with pytest
env:
Expand All @@ -95,9 +93,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements-optional.txt
pip install -r requirements-docs.txt
pip install -e .[docs]
- name: Build
run: mkdocs build
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repos:
rev: v0.0.280
hooks:
- id: ruff
args: [--fix, --ignore, D]
args: [--fix, --show-fixes, --ignore, D]

- repo: https://github.com/psf/black
rev: 23.7.0
Expand Down
5 changes: 4 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,7 @@ markdown_extensions:
plugins:
- search
- minify
- mkdocstrings
- mkdocstrings:
handlers:
python:
paths: [src]
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ src = ["src"]
"src/maggma/cli/*" = ["EXE001"] # triggered by ! at top of file

[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--color=yes -p no:warnings --import-mode=importlib --durations=30"
testpaths = [
"tests",
Expand Down
5 changes: 0 additions & 5 deletions requirements-docs.txt

This file was deleted.

9 changes: 0 additions & 9 deletions requirements-optional.txt

This file was deleted.

12 changes: 0 additions & 12 deletions requirements-testing.txt

This file was deleted.

22 changes: 0 additions & 22 deletions requirements.txt

This file was deleted.

6 changes: 6 additions & 0 deletions requirements/macos-latest_py3.10.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ click==8.1.7
# via
# flask
# mongogrant
# uvicorn
cryptography==41.0.3
# via paramiko
dnspython==2.4.2
Expand All @@ -48,6 +49,8 @@ fastapi==0.103.1
# via maggma (setup.py)
flask==2.3.3
# via mongogrant
h11==0.14.0
# via uvicorn
idna==3.4
# via
# anyio
Expand Down Expand Up @@ -137,10 +140,13 @@ typing-extensions==4.7.1
# fastapi
# pydantic
# pydash
# uvicorn
urllib3==1.26.16
# via
# botocore
# requests
uvicorn==0.23.2
# via maggma (setup.py)
werkzeug==2.3.7
# via flask

Expand Down
Loading

0 comments on commit 2c86cb8

Please sign in to comment.