Skip to content

Commit

Permalink
Merge pull request #39 from trailofbits/36-python3.9
Browse files Browse the repository at this point in the history
Support for Python 3.9
  • Loading branch information
ESultanik authored Dec 6, 2020
2 parents b3159ac + c4748a3 commit 9af1340
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions docs/_templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
{% endfor %}
{% else %}
<dd><a href="/graphtage/latest">latest</a></dd>
<dd><a href="/graphtage/v0.2.4">0.2.4</a></dd>
<dd><a href="/graphtage/v0.2.3">0.2.3</a></dd>
<dd><a href="/graphtage/v0.2.2">0.2.2</a></dd>
<dd><a href="/graphtage/v0.2.1">0.2.1</a></dd>
Expand Down
2 changes: 1 addition & 1 deletion graphtage/matching.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def __repr__(self):
return f'{self.__class__.__name__}<{matchings}>'


class PathSet(Generic[T], Matching[T]):
class PathSet(Matching[T], Generic[T]):
"""A version of a Matching with edge directions overridden, used for [Karp78]_"""
def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion graphtage/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def git_branch() -> Optional[str]:
return None


DEV_BUILD = True
DEV_BUILD = False
"""Sets whether this build is a development build.
This should only be set to :const:`False` to coincide with a release. It should *always* be :const:`False` before
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def get_readme():
'colorama',
'intervaltree',
'json5==0.9.5',
'numpy>=1.19.4',
'PyYAML',
'scipy>=1.4.0',
'tqdm',
Expand Down

0 comments on commit 9af1340

Please sign in to comment.