Skip to content

Commit

Permalink
Add support for Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Baptiste Lab committed Sep 14, 2022
1 parent b8d9938 commit 53aa6d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion puncover/renderers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
from collections import Iterable
try:
from collections import Iterable
except ImportError:
from collections.abc import Iterable

import os
import re
from flask import Flask, render_template, abort, redirect, request
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ Flask==0.10.1
mock==1.3.0
codecov==2.0.5
nose-cov==1.6
itsdangerous==2.0.1
werkzeug<2.1

0 comments on commit 53aa6d4

Please sign in to comment.