Skip to content

Commit c3c2e8c

Browse files
committed
Fix compatibility issue with Python 3.9; bump version to 0.2.1
1 parent 6c6b8cf commit c3c2e8c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Aaron Steven White'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.2.0'
25+
release = '0.2.1'
2626

2727
# Changes root document from contents.rst to index.rst
2828
master_doc = 'index'

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
requests==2.22.0
2-
networkx==2.2
2+
networkx>=2.5.1
33
memoized_property==1.0.3
44
typing==3.6.2
55
rdflib==4.2.2
6-
setuptools==41.0.1
6+
setuptools>=52.0.0
77
numpy>=1.16.4
88
pyparsing==2.2.0
99
overrides==3.1.0

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import find_packages, setup
22

33
setup(name='decomp',
4-
version='0.2.0',
4+
version='0.2.1',
55
description='Toolkit for working with Universal\
66
Decompositional Semantics graphs',
77
url='https://decomp.io/',
@@ -12,12 +12,12 @@
1212
package_dir={'decomp': 'decomp'},
1313
package_data={'decomp': ['data/*']},
1414
install_requires=['requests==2.22.0',
15-
'networkx==2.2',
15+
'networkx>=2.5.1',
1616
'memoized_property==1.0.3',
1717
'overrides==3.1.0',
1818
'typing==3.6.2',
1919
'rdflib==4.2.2',
20-
'setuptools==41.0.1',
20+
'setuptools>=52.0.0',
2121
'numpy>=1.16.4',
2222
'pyparsing==2.2.0',
2323
'predpatt @ http://github.com/hltcoe/PredPatt/tarball/master#egg=predpatt'],

0 commit comments

Comments
 (0)