Skip to content

Commit

Permalink
Merge branch 'fix-link-vars'
Browse files Browse the repository at this point in the history
  • Loading branch information
tswsxk committed May 24, 2021
2 parents cc2fb0d + 8e5e92d commit 2e904e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGE.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v0.0.2:
1. fix potential ModuleNotFoundError

v0.0.1:
1. Add Formula class to parse latex formula, which will generate the abstract syntax tree.
2. Add SIF v0.0.2.
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

test_deps = [
'pytest>=4',
Expand All @@ -13,11 +13,12 @@

setup(
name='EduNLP',
version='0.0.1',
version='0.0.2',
extras_require={
'test': test_deps,
"tutor": tutor_deps
},
packages=find_packages(),
install_requires=[
'networkx',
'numpy',
Expand Down

0 comments on commit 2e904e8

Please sign in to comment.