Skip to content

Commit

Permalink
Update SmartSim version number to 0.5.1 (#362)
Browse files Browse the repository at this point in the history
Update SmartRedis dependency to 0.4.2, SmartSim version to 0.5.1.

[ committed by @MattToast ]
[ reviewed by @al-rigazzi ]
  • Loading branch information
MattToast authored Sep 13, 2023
1 parent 77f4a5f commit fa59b18
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .wci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
language: Python

release:
version: 0.5.0
date: 2023-07-06
version: 0.5.1
date: 2023-09-13

documentation:
general: https://www.craylabs.org/docs/overview.html
Expand All @@ -45,4 +45,4 @@
- Linux/MacOS
transfer_protocols:
- TCP/IP
- Unix Domain Sockets (UDS)
- Unix Domain Sockets (UDS)
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import smartsim
version = smartsim.__version__
except ImportError:
version = "0.4.1"
version = "0.5.1"

# The full version, including alpha/beta/rc tags
release = version
Expand Down Expand Up @@ -91,4 +91,4 @@
autoclass_content = 'both'
add_module_names = False

nbsphinx_execute = 'never'
nbsphinx_execute = 'never'
2 changes: 1 addition & 1 deletion doc/installation_instructions/platform/olcf-summit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ directory from which these instructions are executed.
.. code-block:: bash
# setup Python and build environment
export ENV_NAME=smartsim-0.5.0
export ENV_NAME=smartsim-0.5.1
git clone https://github.com/CrayLabs/SmartRedis.git smartredis
git clone https://github.com/CrayLabs/SmartSim.git smartsim
conda config --prepend channels https://ftp.osuosl.org/pub/open-ce/1.4.1/
Expand Down
2 changes: 1 addition & 1 deletion docker/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ USER craylabs

RUN cd SmartSim && SMARTSIM_SUFFIX=dev python -m pip install .

RUN python -m pip install smartsim[ml,dev]==0.5.0 jupyter jupyterlab matplotlib && \
RUN python -m pip install smartsim[ml,dev]==0.5.1 jupyter jupyterlab matplotlib && \
echo "export PATH=/home/craylabs/.local/bin:$PATH" >> /home/craylabs/.bashrc && \
export PATH=/home/craylabs/.local/bin:$PATH && \
smart clobber && \
Expand Down
2 changes: 1 addition & 1 deletion docker/prod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ WORKDIR /home/craylabs
COPY --chown=craylabs:root ./tutorials/ /home/craylabs/tutorials/

USER craylabs
RUN python -m pip install smartsim[ml]==0.5.0 jupyter jupyterlab matplotlib && \
RUN python -m pip install smartsim[ml]==0.5.1 jupyter jupyterlab matplotlib && \
echo "export PATH=/home/craylabs/.local/bin:$PATH" >> /home/craylabs/.bashrc && \
export PATH=/home/craylabs/.local/bin:$PATH && \
smart build --device cpu -v && \
Expand Down
4 changes: 2 additions & 2 deletions smartsim/_core/_install/buildenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@ class Versioner:
PYTHON_MIN = Version_("3.8.0")

# Versions
SMARTSIM = Version_(get_env("SMARTSIM_VERSION", "0.5.0"))
SMARTREDIS = Version_(get_env("SMARTREDIS_VERSION", "0.4.1"))
SMARTSIM = Version_(get_env("SMARTSIM_VERSION", "0.5.1"))
SMARTREDIS = Version_(get_env("SMARTREDIS_VERSION", "0.4.2"))
SMARTSIM_SUFFIX = get_env("SMARTSIM_SUFFIX", "")

# Redis
Expand Down

0 comments on commit fa59b18

Please sign in to comment.