Skip to content

Commit 3efa00d

Browse files
committed
Changed version of dummy sagemath package to 1.2.8
1 parent 7c47384 commit 3efa00d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
sagemath >= 1.0
2+
cython >= 0.26

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def run_tests(self):
6060

6161
# Specify the required Sage version
6262
sage_required_version = '>=7.5'
63+
REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()]
6364

6465
setup(
6566
name = "sage_sample",
@@ -83,7 +84,7 @@ def run_tests(self):
8384
'Programming Language :: Python :: 2.7',
8485
], # classifiers list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
8586
keywords = "SageMath packaging",
86-
install_requires = ['sagemath'], # This ensures that Sage is installed
87+
install_requires = REQUIREMENTS, # This ensures that Sage is installed
8788
packages = ['sage_sample'],
8889
ext_modules = cythonize(ext_modules), # This line is only needed if there are cython files present
8990
include_package_data = True,

0 commit comments

Comments
 (0)