Skip to content

Commit

Permalink
Merge pull request #55 from funkelab/dependabot/github_actions/action…
Browse files Browse the repository at this point in the history
…s/checkout-4

ci(dependabot): bump actions/checkout from 3 to 4
  • Loading branch information
tlambert03 committed Nov 2, 2023
2 parents 4d708ee + b328d9c commit 8830ca6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run pre-commit linting
run: pipx run pre-commit run --all-files

Expand All @@ -33,12 +33,13 @@ jobs:
python-version: "3.10"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
mamba-version: "*"
miniforge-version: latest
use-mamba: true
channels: conda-forge
channel-priority: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.x"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/publish-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ jobs:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: conda-incubator/setup-miniconda@v2
with:
python-version: "3.11"
mamba-version: "*"
miniforge-version: latest
use-mamba: true
channels: conda-forge
channel-priority: true

Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ dependencies = ['networkx', 'ilpy>=0.3.1', 'numpy', 'structsvm']
dev = ["pre-commit", "pytest", "pytest-cov", "ruff", "twine", "build"]
test = ["pytest", "pytest-cov", "plotly"]
docs = [
"sphinx",
"ipykernel",
"jupyter_sphinx",
"plotly",
"sphinx_rtd_theme",
"sphinx_togglebutton",
"sphinx",
"tomli",
"jupyter_sphinx",
"plotly",
]

[project.urls]
Expand Down

0 comments on commit 8830ca6

Please sign in to comment.