Skip to content

Commit

Permalink
Track mathics-core changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Aug 3, 2024
1 parent 2d9381e commit 7764436
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
/pymathics_natlang.egg-info
/tmp
__pycache__
.python-vesion
1 change: 1 addition & 0 deletions pymathics/natlang/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/.python-version
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
from setuptools import find_namespace_packages, setup

# Ensure user has the correct Python version
if sys.version_info < (3, 7):
print("Mathics support Python 3.7 and above; you have %d.%d" % sys.version_info[:2])
if sys.version_info < (3, 8):
print("Mathics support Python 3.8 and above; you have %d.%d" % sys.version_info[:2])
sys.exit(-1)


Expand Down Expand Up @@ -76,7 +76,6 @@ def read(*rnames):
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
8 changes: 4 additions & 4 deletions test/consistency-and-style/test_summary_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

import pytest

from mathics.core.load_builtin import name_is_builtin_symbol
from mathics.core.builtin import Builtin
from mathics.doc.common_doc import skip_doc
from pymathics.graph import __file__ as module_initfile_path

from pymathics.natlang import __file__ as module_initfile_path
from mathics.core.builtin import Builtin
from mathics.core.load_builtin import name_is_builtin_symbol
from mathics.doc.gather import skip_doc

# Get file system path name for mathics.builtin
module_path = osp.dirname(module_initfile_path)
Expand Down

0 comments on commit 7764436

Please sign in to comment.