Skip to content

Commit 9af1340

Browse files
authored
Merge pull request #39 from trailofbits/36-python3.9
Support for Python 3.9
2 parents b3159ac + c4748a3 commit 9af1340

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.6, 3.7, 3.8]
18+
python-version: [3.6, 3.7, 3.8, 3.9]
1919

2020
steps:
2121
- uses: actions/checkout@v2

docs/_templates/layout.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
{% endfor %}
1818
{% else %}
1919
<dd><a href="/graphtage/latest">latest</a></dd>
20+
<dd><a href="/graphtage/v0.2.4">0.2.4</a></dd>
2021
<dd><a href="/graphtage/v0.2.3">0.2.3</a></dd>
2122
<dd><a href="/graphtage/v0.2.2">0.2.2</a></dd>
2223
<dd><a href="/graphtage/v0.2.1">0.2.1</a></dd>

graphtage/matching.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def __repr__(self):
260260
return f'{self.__class__.__name__}<{matchings}>'
261261

262262

263-
class PathSet(Generic[T], Matching[T]):
263+
class PathSet(Matching[T], Generic[T]):
264264
"""A version of a Matching with edge directions overridden, used for [Karp78]_"""
265265
def __init__(self):
266266
super().__init__()

graphtage/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def git_branch() -> Optional[str]:
4848
return None
4949

5050

51-
DEV_BUILD = True
51+
DEV_BUILD = False
5252
"""Sets whether this build is a development build.
5353
5454
This should only be set to :const:`False` to coincide with a release. It should *always* be :const:`False` before

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def get_readme():
3939
'colorama',
4040
'intervaltree',
4141
'json5==0.9.5',
42+
'numpy>=1.19.4',
4243
'PyYAML',
4344
'scipy>=1.4.0',
4445
'tqdm',

0 commit comments

Comments
 (0)