FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Fix Python 3.11 version constraints · bpython/bpython@f797aa1 · GitHub

Commit f797aa1

Browse files
committed
Fix Python 3.11 version constraints
1 parent b387c5a commit f797aa1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎bpython/test/test_interpreter.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def gfunc():
112112

113113
global_not_found = "name 'gfunc' is not defined"
114114

115-
if (3, 11) <= sys.version_info[:2]:
115+
if (3, 11, 0) <= sys.version_info[:3] < (3, 11, 1):
116116
expected = (
117117
"Traceback (most recent call last):\n File "
118118
+ green('"<input>"')

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL