-
Notifications
You must be signed in to change notification settings - Fork 205
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
remove support for Python 2.7 and 3.5 #4229
Merged
Merged
Changes from all commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
68057bc
[EB5] Remove Python 2
branfosj eab4067
remove py2 deprecation
branfosj c317efe
flake8 and unit tests
branfosj f9309b8
remove unecessary restrictions on requirements
branfosj 870cd92
remove use of py2vs3 (pt1)
branfosj c207173
remove use of py2vs3 (pt2)
branfosj 420a794
remove use of py2vs3 (pt3)
branfosj 7fdea83
remove use of py2vs3 (pt4)
branfosj 452be35
restore import
branfosj 778c21d
need to raise the exception
branfosj 43dd69a
revert change to check if this is the bit causing the test failures
branfosj 59afb81
revert to last working state
branfosj 5d93e85
string_type
branfosj 39b2cd4
revert accidental deletion
branfosj e2f37a4
reload
branfosj efa35d5
OrderedDict
branfosj 4c90e9c
Mapping
branfosj 229bc9d
ascii_*
branfosj 0a3090a
StringIO
branfosj b6e1f3e
do not edit bootstrap script
branfosj 605eb25
urllib
branfosj 8b4dbf9
configparser
branfosj 6510b29
base/meta class
branfosj f35c2ec
traceback
branfosj 00a84e7
urlopen/html parser
branfosj 01befab
json loads
branfosj 9583500
method name
branfosj 9a6f51e
remove import
branfosj 6294ecb
subprocess terminate and popen
branfosj 0f7fd41
remove sort_looseversions tests
branfosj 29ba208
f8
branfosj 668acef
request
branfosj f5f58b9
Revert "request"
branfosj 238a160
add deprecation warning
branfosj ed1e89e
request test
branfosj 85fc1f5
request
branfosj 60266d5
consider python3 before python
branfosj e9a6955
resolve conflict
branfosj 63f10d0
Merge branch 'py2' of github.com:branfosj/easybuild-framework into py2
branfosj 58d57d1
fix eb python test
branfosj 4179997
Merge branch '5.0.x' into py2
boegel 3aacca4
remove py2 from new apptainer container test
branfosj 3c12303
use log.deprecated in py2vs3 module
boegel 1d61bc0
Merge pull request #7 from boegel/py2
branfosj eb53b70
fix merge conflict
branfosj 855db89
relocate subprocess_popen_text + subprocess_terminate to easybuild.to…
boegel 9eb6ce2
avoid duplicate copies of create_base_metaclass + mk_wrapper_baseclas…
boegel 117cd51
add #noqa to unused imports in py2vs3/*py
boegel 2ab6d3b
add back python2_is_deprecated to py2vs3/__init__.py, to avoid broken…
boegel 4c1dc23
Merge pull request #8 from boegel/py2
branfosj File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@branfosj If we copy these functions here, we should also import them from
easybuild.base.wrapper
inpy2vs3/py3.py
, to avoid having two copies of them?see branfosj#8