Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The future is now #9388

Merged
merged 1 commit into from
Jan 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions tests/functional/test_build_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def run_with_build_env(script, setup_script_contents,
build_env_script.write_text(
dedent(
'''
from __future__ import print_function
import subprocess
import sys

Expand Down Expand Up @@ -161,8 +160,6 @@ def test_build_env_overlay_prefix_has_priority(script):
'installing pkg==4.3 in normal')
''',
'''
from __future__ import print_function

print(__import__('pkg').__version__)
''')
assert result.stdout.strip() == '2.0', str(result)
Expand Down Expand Up @@ -195,7 +192,6 @@ def test_build_env_isolation(script):
run_with_build_env(
script, '',
r'''
from __future__ import print_function
from distutils.sysconfig import get_python_lib
import sys

Expand Down
2 changes: 0 additions & 2 deletions tests/functional/test_uninstall.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import with_statement

import json
import logging
import os
Expand Down