-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'oscar-system:master' into ep/cox_ring_strict_transform
- Loading branch information
Showing
326 changed files
with
12,126 additions
and
8,468 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,29 @@ | ||
name: docstring test | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- 'release-*' | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
# group by workflow and ref; the last slightly strange component ensures that for pull | ||
# requests, we limit to 1 concurrent job, but for the master branch we don't | ||
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }} | ||
# Cancel intermediate builds, but only if it is a pull request build. | ||
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | ||
|
||
jobs: | ||
check-docstrings: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/setup-julia@v2 | ||
- uses: julia-actions/cache@v2 | ||
- name: Build package | ||
uses: julia-actions/julia-buildpkg@v1 | ||
- name: 'Check issues in docstrings' | ||
run: | | ||
julia --project=. -e 'using Oscar; include("etc/check_docstrings.jl")' |
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,7 +1,7 @@ | ||
name = "Oscar" | ||
uuid = "f1435218-dba5-11e9-1e4d-f1a5fab5fc13" | ||
authors = ["The OSCAR Team <[email protected]>"] | ||
version = "1.2.0-DEV" | ||
version = "1.3.0-DEV" | ||
|
||
[deps] | ||
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d" | ||
|
@@ -25,11 +25,11 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" | |
cohomCalg_jll = "5558cf25-a90e-53b0-b813-cadaa3ae7ade" | ||
|
||
[compat] | ||
AbstractAlgebra = "0.43.7" | ||
AbstractAlgebra = "0.43.11" | ||
AlgebraicSolving = "0.8.0" | ||
Distributed = "1.6" | ||
GAP = "0.12.0" | ||
Hecke = "0.34.3" | ||
Hecke = "0.34.7" | ||
JSON = "^0.20, ^0.21" | ||
JSON3 = "1.13.2" | ||
LazyArtifacts = "1.6" | ||
|
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,7 +1,9 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
DocumenterCitations = "daee34ce-89f3-4625-b898-19384cb65244" | ||
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" | ||
|
||
[compat] | ||
Documenter = "1.1" | ||
DocumenterCitations = "~1.3.4" | ||
JSON = "0.21.4" |
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
Oops, something went wrong.