Skip to content

Commit

Permalink
Merge pull request #3544 from branfosj/py2
Browse files Browse the repository at this point in the history
remove Python 2 fallback in `openssl_wrapper`
  • Loading branch information
boegel authored Jan 1, 2025
2 parents dfb6184 + 2c4383c commit 29b260d
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 29b260d

Please sign in to comment.