-
Notifications
You must be signed in to change notification settings - Fork 412
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: SkafteNicki <[email protected]> (cherry picked from commit aab9827)
- Loading branch information
Showing
20 changed files
with
63 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,8 @@ jobs: | |
check-code: | ||
uses: Lightning-AI/utilities/.github/workflows/[email protected] | ||
with: | ||
actions-ref: main | ||
extra-typing: typing | ||
actions-ref: v0.9.0 | ||
extra-typing: "typing" | ||
|
||
check-schema: | ||
uses: Lightning-AI/utilities/.github/workflows/[email protected] | ||
|
@@ -25,7 +25,7 @@ jobs: | |
if: github.event.pull_request.draft == false | ||
uses: Lightning-AI/utilities/.github/workflows/[email protected] | ||
with: | ||
actions-ref: main | ||
actions-ref: v0.9.0 | ||
artifact-name: dist-packages-${{ github.sha }} | ||
import-name: "torchmetrics" | ||
testing-matrix: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Project Requirements | ||
|
||
This folder contains all requirements files for the project. The base requirements are located in the `base.txt` file. | ||
Files prefixed with `_` are only meant for development and testing purposes. In general, each subdomain of the project | ||
has a `<domain>.txt` file that contains the necessary requirements for using that subdomain and a `<domain>_test.txt` | ||
file that contains the necessary requirements for testing that subdomain. | ||
|
||
To install all extra requirements such that all tests can be run, use the following command: | ||
|
||
```bash | ||
pip install -r requirements/_devel.txt # unittests | ||
pip install -r requiremnets/_integrate.txt # integration tests | ||
|
||
``` | ||
|
||
To install all extra requirements so that the documentation can be built, use the following command: | ||
|
||
```bash | ||
pip install -r requirements/_docs.txt | ||
# OR just run `make docs` | ||
``` | ||
|
||
## CI/CD upper bounds automation | ||
|
||
For CI stability, we have set for all package versions' upper bounds (the latest version), so with any sudden release, | ||
we won't put our development on fire. Dependabot manages the continuous updates of these upper bounds. | ||
Note that these upper bounds are lifters when installing a package from the source or as a package. | ||
If you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters