Skip to content

Commit

Permalink
Fix compatibility issue with Python 3.9; bump version to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wgantt committed Apr 5, 2021
1 parent 6c6b8cf commit c3c2e8c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Aaron Steven White'

# The full version, including alpha/beta/rc tags
release = '0.2.0'
release = '0.2.1'

# Changes root document from contents.rst to index.rst
master_doc = 'index'
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
requests==2.22.0
networkx==2.2
networkx>=2.5.1
memoized_property==1.0.3
typing==3.6.2
rdflib==4.2.2
setuptools==41.0.1
setuptools>=52.0.0
numpy>=1.16.4
pyparsing==2.2.0
overrides==3.1.0
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup

setup(name='decomp',
version='0.2.0',
version='0.2.1',
description='Toolkit for working with Universal\
Decompositional Semantics graphs',
url='https://decomp.io/',
Expand All @@ -12,12 +12,12 @@
package_dir={'decomp': 'decomp'},
package_data={'decomp': ['data/*']},
install_requires=['requests==2.22.0',
'networkx==2.2',
'networkx>=2.5.1',
'memoized_property==1.0.3',
'overrides==3.1.0',
'typing==3.6.2',
'rdflib==4.2.2',
'setuptools==41.0.1',
'setuptools>=52.0.0',
'numpy>=1.16.4',
'pyparsing==2.2.0',
'predpatt @ http://github.com/hltcoe/PredPatt/tarball/master#egg=predpatt'],
Expand Down

0 comments on commit c3c2e8c

Please sign in to comment.