-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
20b8e44
commit 8fbde0e
Showing
4 changed files
with
266 additions
and
81 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'jedi' | ||
version = "0.19.1" | ||
|
||
homepage = 'https://github.com/davidhalter/jedi' | ||
description = """ | ||
Jedi - an awesome autocompletion, static analysis and refactoring library for Python. | ||
""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '12.3.0'} | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
] | ||
dependencies = [ | ||
('Python', '3.11.3'), | ||
] | ||
|
||
sanity_pip_check = True | ||
use_pip = True | ||
|
||
exts_list = [ | ||
('parso', '0.8.3', { | ||
'checksums': ['8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0'], | ||
}), | ||
(name, version, { | ||
'checksums': ['cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': [], | ||
'dirs': ['lib/python3.11/site-packages/jedi'], | ||
} | ||
|
||
moduleclass = 'tools' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'Pylint' | ||
version = '3.2.5' | ||
|
||
homepage = 'https://www.pylint.org/' | ||
description = """Pylint is a tool that checks for errors in Python code, tries to enforce | ||
a coding standard and looks for code smells. It can also look for certain type errors, | ||
it can recommend suggestions about how particular blocks can be refactored and | ||
can offer you details about the code's complexity.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '12.3.0'} | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
('poetry', '1.5.1'), | ||
] | ||
|
||
dependencies = [ | ||
('Python', '3.11.3'), | ||
] | ||
|
||
use_pip = True | ||
|
||
exts_list = [ | ||
('dill', '0.3.8', { | ||
'checksums': ['3ebe3c479ad625c4553aca177444d89b486b1d84982eeacded644afc0cf797ca'], | ||
}), | ||
('platformdirs', '4.2.2', { | ||
'checksums': ['38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3'], | ||
}), | ||
('tomlkit', '0.12.5', { | ||
'checksums': ['eef34fba39834d4d6b73c9ba7f3e4d1c417a4e56f89a7e96e090dd0d24b8fb3c'], | ||
}), | ||
('astroid', '3.2.2', { | ||
'checksums': ['8ead48e31b92b2e217b6c9733a21afafe479d52d6e164dd25fb1a770c7c3cf94'], | ||
}), | ||
('isort', '5.13.2', { | ||
'checksums': ['48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109'], | ||
}), | ||
('mccabe', '0.7.0', { | ||
'checksums': ['348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325'], | ||
}), | ||
('pylint', version, { | ||
'checksums': ['e9b7171e242dcc6ebd0aaa7540481d1a72860748a0a7816b8fe6cf6c80a6fe7e'], | ||
}), | ||
] | ||
|
||
sanity_pip_check = True | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/pylint'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages'], | ||
} | ||
|
||
moduleclass = 'tools' |
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.