Skip to content

Commit

Permalink
remove Python 2 fallback in openssl_wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
branfosj committed Dec 31, 2024
1 parent dfb6184 commit 2c4383c
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions easybuild/easyblocks/o/openssl_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,7 @@
"""
import os
import re

try:
from urllib.parse import urlparse
except ImportError:
# fallback for Python 2.7, should be removed for EasyBuild >= 5.0
from urlparse import urlparse
from urllib.parse import urlparse

from easybuild.tools import LooseVersion

Expand Down

0 comments on commit 2c4383c

Please sign in to comment.