This repository was archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag '9.1.beta9' into t/29415/tox_ini__add_environment_local_conda
SageMath version 9.1.beta9, Release Date: 2020-03-29
- Loading branch information
Showing
129 changed files
with
3,190 additions
and
1,593 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SageMath version 9.1.beta8, Release Date: 2020-03-18 | ||
SageMath version 9.1.beta9, Release Date: 2020-03-29 |
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.
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,57 @@ | ||
#!/usr/bin/env python3 | ||
# (Actually, we invoke this script with a specific python3 determined by configure.) | ||
|
||
# Adapted from examples in https://docs.python.org/3/library/venv.html | ||
|
||
import venv | ||
import os | ||
import argparse | ||
|
||
parser = argparse.ArgumentParser(prog=__name__, | ||
description='Creates a virtual Python ' | ||
'environment in a target directory.') | ||
parser.add_argument('env_dir', metavar='ENV_DIR', | ||
help='A directory in which to create the' | ||
'virtual environment.') | ||
|
||
parser.add_argument('--system-site-packages', default=False, | ||
action='store_true', dest='system_site', | ||
help='Give the virtual environment access to the ' | ||
'system site-packages dir.') | ||
|
||
parser.add_argument('--clear', default=False, action='store_true', | ||
dest='clear', help='Delete the contents of the ' | ||
'virtual environment ' | ||
'directory if it already ' | ||
'exists, before virtual ' | ||
'environment creation.') | ||
parser.add_argument('--upgrade', default=False, action='store_true', | ||
dest='upgrade', help='Upgrade the virtual ' | ||
'environment directory to ' | ||
'use this version of ' | ||
'Python, assuming Python ' | ||
'has been upgraded ' | ||
'in-place.') | ||
|
||
options = parser.parse_args() | ||
if options.upgrade and options.clear: | ||
raise ValueError('you cannot supply --upgrade and --clear together.') | ||
|
||
if os.name == 'nt': | ||
# default for Windows | ||
use_symlinks = False | ||
else: | ||
# default for posix | ||
# On macOS, definitely need symlinks=True (which matches what we test in build/pkgs/spkg-configure.m4) | ||
# or it may fail with 'dyld: Library not loaded: @executable_path/../Python3' on macOS. | ||
use_symlinks = True | ||
|
||
b = venv.EnvBuilder(system_site_packages=options.system_site, | ||
clear=options.clear, | ||
upgrade=options.upgrade, | ||
symlinks=use_symlinks) | ||
c = b.ensure_directories(options.env_dir) | ||
b.setup_python(c) | ||
b.create_configuration(c) | ||
# We do not call setup_scripts, which would install the venv 'activate'/'deactivate' scripts. | ||
|
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
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 @@ | ||
beautifulsoup4 |
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 @@ | ||
pip | ||
optional |
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 @@ | ||
biopython |
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 @@ | ||
pip | ||
optional |
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=16999eea7613ed2ed183a5b2c3eefc6265685017 | ||
md5=ece66d1eaec2065f7a0e0aad65d71b90 | ||
cksum=906044305 | ||
sha1=61c67b0467fed4e9c3330e74b24eed140d628a3a | ||
md5=e7e0d1af7ee75e2c10532ec8a3a2ddba | ||
cksum=2321075386 |
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 @@ | ||
52ba9a76be0b56be044a441ee2448a4f4d93c6c3 | ||
437bbd8e43c5889b8135f4786fed5f4b32cbb46a |
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,2 +1,5 @@ | ||
curl | ||
cyrus-sasl | ||
# giac build needs libldap | ||
openldap-client | ||
libssh2 |
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,5 @@ | ||
tarball=e-antic-VERSION.tar.gz | ||
sha1=2a443ab9babf5373a434acd90923a793cd950f10 | ||
md5=c4ffc38b285cd6e81c555e48dbbb529e | ||
cksum=1444226844 | ||
sha1=582c0c3118410f6d8efe23f8fd679e2c602f09a3 | ||
md5=25e1df644ba85db544209cc1d2056464 | ||
cksum=1577490486 | ||
upstream_url=https://www.labri.fr/perso/vdelecro/e-antic/e-antic-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 |
---|---|---|
@@ -1 +1 @@ | ||
0.1.3 | ||
0.1.5 |
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,3 @@ | ||
libec-dev | ||
# provides the mwrank executable: | ||
eclib-tools |
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,16 @@ | ||
SAGE_SPKG_CONFIGURE([fflas_ffpack], [ | ||
dnl A check for a system package is not implemented yet. | ||
sage_spkg_install_fflas_ffpack=yes | ||
dnl https://github.com/linbox-team/fflas-ffpack/blob/master/macros/instr_set.m4 | ||
dnl discovers these flags from the processor but fails to check whether | ||
dnl compiler (and assembler) actually support these instruction sets. | ||
AX_CHECK_COMPILE_FLAG([-mavx512f -mavx512vl -mavx512dq], [], [ | ||
AS_VAR_APPEND([SAGE_CONFIGURE_FFLAS_FFPACK], [" --disable-avx512f --disable-avx512vl --disable-avx512dq"]) | ||
]) | ||
m4_foreach([ISFLAG], [fma, fma4], [ | ||
AX_CHECK_COMPILE_FLAG([-m]ISFLAG, [], [AS_VAR_APPEND]([SAGE_CONFIGURE_FFLAS_FFPACK], [" --disable-]ISFLAG[ "])) | ||
]) | ||
AC_SUBST([SAGE_CONFIGURE_FFLAS_FFPACK]) | ||
]) |
Oops, something went wrong.