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 Sep 1, 2023
2 parents 381a3da + 213a18f commit 430bb2d
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 6 deletions.
24 changes: 24 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,30 @@
- For a list of open issues and known problems, see:
<https://github.com/radical-cybertools/radical.analytics/issues?q=is%3Aissue+is%3Aopen>


1.34.0 Release 2023-06-22
--------------------------------------------------------------------------------

- consistency across RCT modules


1.33.0 Release 2023-04-25
--------------------------------------------------------------------------------

- avoid hardcoding session IDs
- enable compilation of notebooks
- fix extension renaming
- Iterate and fix all the tutorials
- simplify session ingest
- use same ncores/gpus of frontier


1.20.1 Release 2022-12-16
--------------------------------------------------------------------------------

- fix MANIFEST.in


1.20.0 Release 2022-12-16
--------------------------------------------------------------------------------

Expand Down
8 changes: 5 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

include VERSION README.md LICENSE.md CHANGES.md LICENSE
include *.py *.json *.md *.sh *.txt
include MANIFEST.in README.md CHANGES.md LICENSE.md VERSION

recursive-include radical *
recursive-include tests *
recursive-include docs *.md
recursive-include src *.sh *.json
recursive-include examples *.py *.json

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.0
1.35.0
1 change: 0 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ RA supports the development and experimental analysis of the


.. toctree::
:numbered:
:maxdepth: 2

introduction.rst
Expand Down
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import subprocess as sp

from setuptools import setup, Command, find_namespace_packages

from pathlib import Path

# ------------------------------------------------------------------------------
base = 'analytics'
Expand Down Expand Up @@ -200,13 +200,20 @@ def run(self):
requirements = freq.readlines()


# ------------------------------------------------------------------------------
#
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding='utf-8')

# ------------------------------------------------------------------------------
#
setup_args = {
'name' : name,
'namespace_packages' : ['radical'],
'version' : version,
'description' : 'Profiling library for RADICAL-Cybertools',
'long_description' : long_description,
'long_description_content_type' : 'text/markdown',
'author' : 'RADICAL Group at Rutgers University',
'author_email' : 'radical@rutgers.edu',
'maintainer' : 'The RADICAL Group',
Expand Down

0 comments on commit 430bb2d

Please sign in to comment.