Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Sep 15, 2020
1 parent 67c56a6 commit 1d88afe
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/pkgs/sage_conf/src/setup.cfg.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# @configure_input@

[metadata]
name = sage_conf
name = sage-conf
version = @PACKAGE_VERSION@
description = Sage: Open Source Mathematics Software: Configuration for sagelib
long_description = file: README.rst
Expand Down
18 changes: 15 additions & 3 deletions src/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
## requirements.txt for creating venvs with sagelib
##
## Usage:
##
## $ ../sage -sh
## (sage-sh) $ python3 -m venv venv1
## (venv1) (sage-sh) $ pip install -r requirements.txt
## (venv1) (sage-sh) $ pip install -e .

--index-url=file://${SAGE_LOCAL}/var/lib/sage/wheels/simple
--extra-index-url=https://pypi.python.org/simple

#sage_conf
#sage_setup
six # use of six should be removed from sage_setup
Cython==0.29.17
Cython>=0.29.17
pkgconfig
cysignals
gmpy2==2.1.0b1
Expand All @@ -15,5 +27,5 @@ cypari2 # but building bdist_wheel of cypari2 fails with recent pip... ht

psutil
pexpect
pplpy
ipython<=5.8
#pplpy
ipython>=7
3 changes: 2 additions & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,5 +177,6 @@
cmdclass = dict(build=sage_build,
build_cython=sage_build_cython,
build_ext=sage_build_ext,
install=sage_install),
#install=sage_install
),
ext_modules = cython_modules)

0 comments on commit 1d88afe

Please sign in to comment.