Skip to content

Commit

Permalink
merge from devel
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-merzky committed Apr 15, 2024
2 parents 1746c02 + 80ab744 commit 9b49976
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
https://github.com/radical-cybertools/radical.entk/ \
issues?q=is%3Aissue+is%3Aopen+

1.50.0 Release 2024-04-15
--------------------------------------------------------------------------------

- fix for setuptools upgrade


1.48.0 Release 2024-02-24
--------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.48.0
1.51.0
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,10 @@ def get_version(_mod_root):
# _sdist_name = _sdist_name.replace('#', '-')
# _sdist_name = _sdist_name.replace('_', '-')

# setuptools 69.5 does changes naming scheme
if not os.path.isfile('%s/%s' % (_path, _sdist_name)):
_sdist_name = '%s-%s.tar.gz' % (name.replace('.', '_'), _version_base)

if '--record' in sys.argv or \
'bdist_egg' in sys.argv or \
'bdist_wheel' in sys.argv :
Expand Down Expand Up @@ -205,7 +209,7 @@ def run(self):
#
setup_args = {
'name' : name,
'namespace_packages' : ['radical'],
# 'namespace_packages' : ['radical'],
'version' : version,
'description' : "Radical Ensemble Toolkit.",
'author' : 'RADICAL Group at Rutgers University',
Expand Down

0 comments on commit 9b49976

Please sign in to comment.