Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DuniterPy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
python
DuniterPy
Merge requests
!176
Add support for Python v3.11
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Add support for Python v3.11
194_py_v3.11
into
main
Overview
0
Commits
5
Pipelines
4
Changes
3
Merged
Moul
requested to merge
194_py_v3.11
into
main
2 years ago
Overview
0
Commits
5
Pipelines
4
Changes
3
Fix deprecation warning about
typing.re.Pattern
Introduce
tests:3.11
job
Set default
PYTHON_VERSION
to
3.11
Move coverage to
3.11
job
Bump
pytest-cov
to v4
Close
#194 (closed)
Edited
2 years ago
by
Moul
0
0
Merge request reports
Compare
main
version 1
100ba4d6
2 years ago
main (base)
and
latest version
latest version
6a3f2553
5 commits,
2 years ago
version 1
100ba4d6
4 commits,
2 years ago
3 files
+
14
−
10
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
duniterpy/documents/document.py
+
1
−
2
View file @ 6a3f2553
Edit in single-file editor
Open in Web IDE
Show full file
@@ -17,8 +17,7 @@ import base64
@@ -17,8 +17,7 @@ import base64
import
hashlib
import
hashlib
import
logging
import
logging
import
re
import
re
from
typing
import
Any
,
Dict
,
Optional
,
Type
,
TypeVar
from
typing
import
Any
,
Dict
,
Optional
,
Pattern
,
Type
,
TypeVar
from
typing.re
import
Pattern
from
..constants
import
SIGNATURE_REGEX
from
..constants
import
SIGNATURE_REGEX
from
..key
import
SigningKey
,
VerifyingKey
from
..key
import
SigningKey
,
VerifyingKey
Loading