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

{lang}[GCCcore/12.3.0] Python v2.7.18 #18540

Merged
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
53 changes: 53 additions & 0 deletions easybuild/easyconfigs/p/Python/Python-2.7.18-GCCcore-12.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name = 'Python'
version = '2.7.18'

homepage = 'https://python.org/'
description = """Python is a programming language that lets you work more quickly and integrate your systems
more effectively."""

toolchain = {'name': 'GCCcore', 'version': '12.3.0'}
toolchainopts = {'pic': True}

source_urls = ['https://www.python.org/ftp/%(namelower)s/%(version)s/']
sources = [SOURCE_TGZ]
checksums = ['da3080e3b488f648a3d7a4560ddee895284c3380b11d6de75edb986526b9a814']

builddependencies = [
('pkgconf', '1.9.5'),
]

dependencies = [
('binutils', '2.40'),
('bzip2', '1.0.8'), # required for bz2 package in Python stdlib
('zlib', '1.2.13'),
('libreadline', '8.2'),
('ncurses', '6.4'),
('SQLite', '3.42.0'),
('OpenSSL', '1.1', '', SYSTEM),
]

install_pip = True

exts_default_options = {
'download_dep_fail': True,
'sanity_pip_check': True,
'source_urls': [PYPI_SOURCE],
'use_pip': True,
}

# order is important!
# package versions updated 2023-05-17
# https://pip.pypa.io/en/latest/development/release-process/#python-2-support

exts_list = [
('wheel', '0.37.1', {
'checksums': ['e9a504e793efbca1b8e0e9cb979a249cf4a0a7b5b8c9e8b65a5e39d49529c1c4'],
}),
('setuptools', '44.1.1', {
'source_tmpl': '%(name)s-%(version)s.zip',
'checksums': ['c67aa55db532a0dadc4d2e20ba9961cbd3ccc84d544e9029699822542b5a476b'],
}),
('pip', '20.3.4', {
'checksums': ['6773934e5f5fc3eaa8c5a44949b5b924fc122daa0a8aa9f80c835b4ca2a543fc'],
}),
]