Skip to content

Commit

Permalink
Merge pull request #25 from assem-ch/3.10
Browse files Browse the repository at this point in the history
3.10
  • Loading branch information
assem-ch committed Mar 14, 2022
2 parents b7a5080 + 9ecb947 commit f37d8a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:

- python-version: 3.9
django-version: Django==4.0

- python-version: "3.10"
django-version: Django==4.0
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion jet/ordered_set.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import collections


class OrderedSet(collections.MutableSet):
class OrderedSet(collections.abc.MutableSet):
def __init__(self, iterable=None):
self.end = end = []
end += [None, end, end] # sentinel node for doubly linked list
Expand Down

0 comments on commit f37d8a7

Please sign in to comment.