Skip to content

Commit 72d9da7

Browse files
committed
Merge branch 'develop' into hide_features_34185
2 parents 6dff841 + 3202f65 commit 72d9da7

File tree

395 files changed

+22347
-18531
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

395 files changed

+22347
-18531
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: Build & Test
33
on:
44
pull_request:
55
push:
6+
branches: ['**']
7+
# Ignore pushes on tags to prevent two uploads of codecov reports
8+
tags-ignore: ['**']
69
workflow_dispatch:
710
# Allow to run manually
811
inputs:
@@ -91,7 +94,7 @@ jobs:
9194
if: always() && steps.build.outcome == 'success'
9295
run: |
9396
../sage -python -m pip install coverage
94-
../sage -python -m coverage run ./bin/sage-runtests --all -p2
97+
../sage -python -m coverage run ./bin/sage-runtests --all -p2 --random-seed=286735480429121101562228604801325644303
9598
working-directory: ./src
9699

97100
- name: Prepare coverage results

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"python.linting.enabled": true,
2828
// The following pycodestyle arguments are the same as the pycodestyle-minimal
2929
// tox environnment, see the file SAGE_ROOT/src/tox.ini
30-
"python.linting.pycodestyleArgs": ["--select=E111,E306,E401,E701,E702,E703,W291,W391,W605,E711,E712,E713,E721,E722"],
30+
"python.linting.pycodestyleArgs": ["--select= E111,E211,E271,E303,E306,E401,E502,E701,E702,E703,E714,W291,W293,W391,W605,E711,E712,E713,E721,E722"],
3131
"cSpell.words": [
3232
"furo",
3333
"Conda",

.zenodo.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"description": "Mirror of the Sage https://sagemath.org/ source tree",
33
"license": "other-open",
4-
"title": "sagemath/sage: 10.1.beta0",
5-
"version": "10.1.beta0",
4+
"title": "sagemath/sage: 10.1.beta1",
5+
"version": "10.1.beta1",
66
"upload_type": "software",
7-
"publication_date": "2023-05-22",
7+
"publication_date": "2023-05-28",
88
"creators": [
99
{
1010
"affiliation": "SageMath.org",
@@ -15,7 +15,7 @@
1515
"related_identifiers": [
1616
{
1717
"scheme": "url",
18-
"identifier": "https://github.com/sagemath/sage/tree/10.1.beta0",
18+
"identifier": "https://github.com/sagemath/sage/tree/10.1.beta1",
1919
"relation": "isSupplementTo"
2020
},
2121
{

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SageMath version 10.1.beta0, Release Date: 2023-05-22
1+
SageMath version 10.1.beta1, Release Date: 2023-05-28

bootstrap-conda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ OPTIONAL_SYSTEM_PACKAGES=
1717
SAGELIB_SYSTEM_PACKAGES=
1818
SAGELIB_OPTIONAL_SYSTEM_PACKAGES=
1919
DEVELOP_SYSTEM_PACKAGES=
20-
for PKG_BASE in $(sage-package list --has-file distros/conda.txt); do
20+
for PKG_BASE in $(sage-package list --has-file distros/conda.txt --exclude _sagemath); do
2121
PKG_SCRIPTS=build/pkgs/$PKG_BASE
2222
SYSTEM_PACKAGES_FILE=$PKG_SCRIPTS/distros/conda.txt
2323
PKG_TYPE=$(cat $PKG_SCRIPTS/type)
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# Packages needed for ./bootstrap
2-
autoconf automake libtool
2+
autoconf
3+
automake
4+
libtool
5+
pkg-config

build/pkgs/_bootstrap/distros/slackware.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
autoconf
33
automake
44
libtool
5+
pkg-config
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# Packages needed for ./bootstrap
22
autoconf automake libtool
33
xtools mk-configure
4+
pkg-config

build/pkgs/_prereq/distros/conda.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ perl
55
python
66
tar
77
bc
8-
pkg-config

build/pkgs/_prereq/distros/slackware.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,5 @@ python3 # on slackware-current
1414
flex
1515
# for https upstream_url downloads
1616
ca-certificates
17-
pkg-config
1817
libxml2
1918
cyrus-sasl

0 commit comments

Comments
 (0)