Skip to content

Commit 96bcf2e

Browse files
committed
Update dependencies and test
1 parent 6029b2e commit 96bcf2e

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/osx.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
LLVM_CONFIG=/usr/local/Cellar/llvm@9/9.0.1_2/bin/llvm-config pip install llvmlite
25+
brew install mariadb
2526
python -m pip install --upgrade pip
2627
pip install pytest
2728
- name: Install pymathics.natlang

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@ def read(*rnames):
4444
name="pymathics-natlang",
4545
version=__version__,
4646
packages=find_namespace_packages(include=["pymathics.*"]),
47-
install_requires=["Mathics3>=1.1.0", "nltk", "spacy<3.0", "pattern"],
47+
install_requires=["Mathics3>=2.0.0", "nltk>=3.6.1", "spacy<3.0",
48+
"llvmlite>=0.36", "joblib>=1.0.1",
49+
"click>=7.1", "six>=1.11.0",
50+
"pattern>=3.6.0", "wasabi<1.1.0,>=0.8.2"],
4851
zip_safe=False,
4952
maintainer="Mathics Group",
5053
long_description=long_description,

test/test_natlang.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
# -*- coding: utf-8 -*-
22
from .helper import session, check_evaluation
33

4-
import sys
5-
from mathics.core.parser import parse, SingleLineFeeder
6-
from mathics.core.definitions import Definitions
7-
from mathics.core.evaluation import Evaluation
8-
import pytest
9-
104
def test_natlang():
115

126
session.evaluate(

0 commit comments

Comments
 (0)