Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 9 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Basic dependabot.yml file with
# minimum configuration for two package managers
# Basic dependabot.yml file with minimum configuration for two package managers

version: 2
updates:
Expand All @@ -9,10 +8,10 @@ updates:
directory: "/"
# Check for updates once a week
schedule:
interval: "monthly"
interval: "weekly"
# Labels on pull requests for version updates only
labels:
- "ci / tests"
- "dependencies"
pull-request-branch-name:
# Separate sections of the branch name with a hyphen
# for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
Expand All @@ -25,17 +24,15 @@ updates:
# Enable version updates for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
# Check for updates once a week
schedule:
interval: "monthly"
# Labels on pull requests for version updates only
labels:
- "ci / tests"
groups:
GH_actions:
patterns:
- "*" # Check all dependencies
labels: ["ci"]
pull-request-branch-name:
# Separate sections of the branch name with a hyphen
# for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
separator: "-"
# Allow up to 5 open pull requests for GitHub Actions
open-pull-requests-limit: 5
open-pull-requests-limit: 2
reviewers:
- "Borda"
2 changes: 1 addition & 1 deletion .github/workflows/docs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
with:
# If you're using actions/checkout@v4 you must set persist-credentials to false in most cases for the deployment to work correctly.
persist-credentials: false
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: docs-html-${{ github.sha }}
path: docs/build/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ jobs:
# We do this, since failures on test.pypi aren't that bad
- name: Publish to Test PyPI
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
uses: pypa/[email protected].12
uses: pypa/[email protected].14
with:
user: __token__
password: ${{ secrets.test_pypi_password }}
repository_url: https://test.pypi.org/legacy/

- name: Publish distribution 📦 to PyPI
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
uses: pypa/[email protected].12
uses: pypa/[email protected].14
with:
user: __token__
password: ${{ secrets.pypi_password }}
6 changes: 3 additions & 3 deletions requirements/test.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
coverage ==7.4.3
pytest ==8.0.2
coverage ==7.4.4
pytest ==8.1.1
pytest-timeout ==2.2.0
pytest-cov ==4.1.0
pytest-xdist ==3.5.0
Expand All @@ -8,7 +8,7 @@ pytest-timestamper ==0.0.9
graphviz ==0.20.1
fdm ==0.4.1
expecttest ==0.2.1 # for test_ddp.py
hypothesis ==6.98.15 # for test_ddp.py
hypothesis ==6.99.8 # for test_ddp.py
numpy # for test_ops.py
einops # for test_einops.py
lit_gpt @ git+https://github.com/Lightning-AI/lit-gpt@f241d94df59d82b2017bfdcd3800ac8779eb45f5
Expand Down