-
-
Notifications
You must be signed in to change notification settings - Fork 480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
src/sage/misc/package.py: use gnulib instead of conway_polynomials in tests #38661
Conversation
Documentation preview for this PR (built with commit e282f46; changes) is ready! 🎉 |
This fixes a harmless but annoying test failure with "gnulib" should be a safe alternative because it's not a real package, only a placeholder for the |
please rebase |
… tests The conway_polynomials package now has an spkg-configure.m4, and may not be installed as an SPKG. In that case, several tests fail. For example, File "src/sage/misc/package.py", line 404, in sage.misc.package.installed_packages Failed example: sorted(installed_packages().keys()) Expected: [...'conway_polynomials', ...] Got: ['combinatorial_designs', 'elliptic_curves', 'execnet', 'gnulib', 'gnumake_tokenpool', 'graphs', 'h11', 'iniconfig', 'jmol', 'polytopes_db', 'pyproject_hooks', 'pytest_mock', 'pytest_xdist', 'python3_venv', 'python_build', 'sage_conf', 'sage_setup', 'sagelib', 'threejs'] The gnulib package seems like a safe alternative.
827e05b
to
e282f46
Compare
no problem, done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
…way_polynomials in tests The conway_polynomials package now has an `spkg-configure.m4`, and may not be installed as an SPKG. In that case, several tests fail. For example, ``` File "src/sage/misc/package.py", line 404, in sage.misc.package.installed_packages Failed example: sorted(installed_packages().keys()) Expected: [...'conway_polynomials', ...] Got: ['combinatorial_designs', 'elliptic_curves', 'execnet', 'gnulib', 'gnumake_tokenpool', 'graphs', 'h11', 'iniconfig', 'jmol', 'polytopes_db', 'pyproject_hooks', 'pytest_mock', 'pytest_xdist', 'python3_venv', 'python_build', 'sage_conf', 'sage_setup', 'sagelib', 'threejs'] ``` The gnulib package seems like a safe alternative. URL: sagemath#38661 Reported by: Michael Orlitzky Reviewer(s): Dima Pasechnik
The conway_polynomials package now has an
spkg-configure.m4
, and may not be installed as an SPKG. In that case, several tests fail. For example,The gnulib package seems like a safe alternative.