-
-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into merge-group
- Loading branch information
Showing
2,621 changed files
with
131,333 additions
and
180,651 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# https://docs.codecov.com/docs/pull-request-comments#disable-comment | ||
comment: false | ||
# https://docs.codecov.com/docs/codecovyml-reference#codecov | ||
codecov: | ||
require_ci_to_pass: false | ||
# https://docs.codecov.com/docs/commit-status | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: 0% | ||
base: auto | ||
informational: true | ||
patch: | ||
default: | ||
target: auto | ||
threshold: 0% | ||
base: auto |
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,35 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | ||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/debian | ||
{ | ||
"name": "Conda", | ||
"image": "mcr.microsoft.com/vscode/devcontainers/base:0-bullseye", | ||
|
||
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | ||
"remoteUser": "vscode", | ||
|
||
// Setup conda environment | ||
"onCreateCommand": ".devcontainer/onCreate-conda.sh", | ||
|
||
// Install additional features. | ||
"features": { | ||
// For config options, see https://github.com/devcontainers/features/tree/main/src/conda | ||
"ghcr.io/devcontainers/features/conda": { | ||
"version": "latest", | ||
"addCondaForge": "true" | ||
} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"guyskk.language-cython", | ||
"ms-python.isort", | ||
"ms-toolsai.jupyter", | ||
"ms-python.vscode-pylance", | ||
"ms-python.pylint", | ||
"ms-python.python", | ||
"lextudio.restructuredtext", | ||
"trond-snekvik.simple-rst" | ||
] | ||
} | ||
} | ||
} |
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,14 @@ | ||
# Do not keep running on errors | ||
set -e | ||
|
||
# Create conda environment | ||
./bootstrap-conda | ||
conda install mamba -n base -c conda-forge -y | ||
mamba env create --file src/environment-dev.yml || mamba env update --file src/environment-dev.yml | ||
conda init bash | ||
|
||
# Build sage | ||
conda run -n sage-dev ./bootstrap | ||
conda run -n sage-dev ./configure --with-python=/opt/conda/envs/sage-dev/bin/python --prefix=/opt/conda/envs/sage-dev | ||
conda run -n sage-dev pip install --no-build-isolation -v -v -e ./pkgs/sage-conf ./pkgs/sage-setup | ||
conda run -n sage-dev pip install --no-build-isolation -v -v -e ./src |
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 |
---|---|---|
@@ -1,23 +1,32 @@ | ||
### 📚 Description | ||
<!-- ^^^^^ | ||
Please provide a concise, informative and self-explanatory title. | ||
Don't put issue numbers in there, do this in the PR body below. | ||
For example, instead of "Fixes #1234" use "Introduce new method to calculate 1+1" | ||
--> | ||
<!-- Describe your changes here in detail --> | ||
|
||
<!-- Describe your changes in detail --> | ||
<!-- Why is this change required? What problem does it solve? --> | ||
<!-- If it resolves an open issue, please link to the issue here. For example "Closes #1337" --> | ||
<!-- If this PR resolves an open issue, please link to it here. For example "Fixes #12345". --> | ||
<!-- If your change requires a documentation PR, please link it appropriately. --> | ||
|
||
### 📝 Checklist | ||
### :memo: Checklist | ||
|
||
<!-- Put an `x` in all the boxes that apply. --> | ||
<!-- If your change requires a documentation PR, please link it appropriately --> | ||
<!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
<!-- Feel free to remove irrelevant items. --> | ||
|
||
- [ ] I have linked an issue or discussion. | ||
- [ ] The title is concise, informative, and self-explanatory. | ||
- [ ] The description explains in detail what this PR is about. | ||
- [ ] I have linked a relevant issue or discussion. | ||
- [ ] I have created tests covering the changes. | ||
- [ ] I have updated the documentation accordingly. | ||
|
||
### ⌛ Dependencies | ||
<!-- List all open pull requests that this PR logically depends on --> | ||
<!-- | ||
- #xyz: short description why this is a dependency | ||
- #abc: ... | ||
### :hourglass: Dependencies | ||
|
||
<!-- List all open PRs that this PR logically depends on | ||
- #12345: short description why this is a dependency | ||
- #34567: ... | ||
--> | ||
|
||
<!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> |
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,10 @@ | ||
# Documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
Oops, something went wrong.