-
-
Notifications
You must be signed in to change notification settings - Fork 510
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 fix_E303_in_folders_defghi
- Loading branch information
Showing
787 changed files
with
16,981 additions
and
93,644 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,15 @@ | ||
# https://docs.codecov.com/docs/pull-request-comments#disable-comment | ||
comment: false | ||
# https://docs.codecov.com/docs/commit-status | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: 0% | ||
base: auto | ||
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
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,29 +1,29 @@ | ||
<!-- ^^^^^ | ||
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" | ||
--> | ||
### 📚 Description | ||
<!-- Please provide a concise, informative and self-explanatory title. --> | ||
<!-- Don't put issue numbers in the title. Put it in the Description below. --> | ||
<!-- For example, instead of "Fixes #12345", use "Add a new method to multiply two integers" --> | ||
|
||
### :books: Description | ||
|
||
<!-- Describe your changes here in detail --> | ||
<!-- Describe your changes here 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! --> | ||
<!-- Put an `x` in all the boxes that apply. It should be `[x]` not `[x ]`. --> | ||
|
||
- [ ] I have made sure that the title is self-explanatory and the description concisely explains the PR. | ||
- [ ] 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
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,51 @@ | ||
name: Build documentation (PDF) | ||
|
||
on: | ||
pull_request: | ||
push: | ||
workflow_dispatch: | ||
# Allow to run manually | ||
|
||
concurrency: | ||
# Cancel previous runs of this workflow for the same branch | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build-docs: | ||
runs-on: ubuntu-latest | ||
# Use "maximal" so that texlive is installed | ||
# Use "fedora-31" for build diversity | ||
container: ghcr.io/sagemath/sage/sage-docker-fedora-31-maximal-with-targets:dev | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Prepare | ||
run: | | ||
apt-get update && apt-get install -y zip | ||
# Reuse built SAGE_LOCAL contained in the Docker image | ||
./bootstrap | ||
./configure --enable-build-as-root --prefix=/sage/local --with-sage-venv --enable-download-from-upstream-url | ||
- name: Build | ||
run: make build V=0 && make doc-pdf | ||
env: | ||
MAKE: make -j2 | ||
SAGE_NUM_THREADS: 2 | ||
TEXMFHOME: /sage/texmf | ||
|
||
- name: Copy docs | ||
run: | | ||
# For some reason the deploy step below cannot find /sage/... | ||
# So copy everything from there to local folder | ||
mkdir -p ./docs | ||
cp -r -L /sage/local/share/doc/sage/pdf/en/* ./docs | ||
# Zip everything for increased performance | ||
zip -r docs-pdf.zip docs | ||
- name: Upload docs | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: docs-pdf | ||
path: docs-pdf.zip |
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 +1 @@ | ||
SageMath version 10.0.beta3, Release Date: 2023-03-02 | ||
SageMath version 10.0.beta6, Release Date: 2023-03-26 |
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,4 +1,4 @@ | ||
tarball=configure-VERSION.tar.gz | ||
sha1=b9a6c30f4f1c828ca611527d104643d8c0b89ed9 | ||
md5=37a7a99a528efa8a4eea1beff33985db | ||
cksum=1112286999 | ||
sha1=c9dfa61ff70a2dceec85ad01fc37ee42232402c0 | ||
md5=7479fb53c1b9fd56aea37f83a34cdac3 | ||
cksum=3525422540 |
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 +1 @@ | ||
a822a2132aa0e85069ec8b6efa48ad6db08cc044 | ||
4452928a1a41758883e2f0e3a445b015dfa0e593 |
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,18 @@ | ||
cvxpy: A domain-specific language for modeling convex optimization problems in Python. | ||
====================================================================================== | ||
|
||
Description | ||
----------- | ||
|
||
A domain-specific language for modeling convex optimization problems in Python. | ||
|
||
License | ||
------- | ||
|
||
Apache License, Version 2.0 | ||
|
||
Upstream Contact | ||
---------------- | ||
|
||
https://pypi.org/project/cvxpy/ | ||
|
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,5 @@ | ||
tarball=cvxpy-VERSION.tar.gz | ||
sha1=8c87f8f8c2177f917ec2fad7d2b510787ffdf72d | ||
md5=408b0a3140750299207f61de95b4ed6e | ||
cksum=3643150234 | ||
upstream_url=https://pypi.io/packages/source/c/cvxpy/cvxpy-VERSION.tar.gz |
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,4 @@ | ||
$(PYTHON) numpy scipy glpk cvxopt osqp_python ecos_python scs | $(PYTHON_TOOLCHAIN) | ||
|
||
---------- | ||
All lines of this file are ignored except the first. |
Oops, something went wrong.