Skip to content

Commit e54f3fd

Browse files
authored
Revise for current API and style (#6)
1 parent e76c670 commit e54f3fd

File tree

8 files changed

+217
-105
lines changed

8 files changed

+217
-105
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ repos:
1616
- id: black
1717
language_version: python3
1818
exclude: 'mathicsscript/version.py'
19-
- repo: https://github.com/pycqa/flake8
20-
rev: 3.9.2
21-
hooks:
22-
- id: flake8
23-
stages: [commit]
19+
# - repo: https://github.com/pycqa/flake8
20+
# rev: 3.9.2
21+
# hooks:
22+
# - id: flake8
23+
# stages: [commit]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ clean-pyc:
6161

6262
#: Run py.test tests. Use environment variable "o" for pytest options
6363
pytest:
64-
py.test test $o
64+
$(PYTHON) -m pytest test $o
6565

6666

6767
# #: Create data that is used to in Django docs and to build TeX PDF

pymathics/natlang/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"""
88

99

10-
from pymathics.natlang.__main__ import *
10+
from pymathics.natlang.main import *
1111
from pymathics.natlang.version import __version__
1212

1313
pymathics_version_data = {

0 commit comments

Comments
 (0)