Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .wci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
language: Python

release:
version: 0.6.0
date: 2023-12-18
version: 0.6.1
date: 2024-02-15

documentation:
general: https://www.craylabs.org/docs/overview.html
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ tutorials-dev:
@docker compose build tutorials-dev
@docker run -p 8888:8888 smartsim-tutorials:dev-latest

# help: tutorials-prod - Build and start a docker container to run the tutorials (v0.6.0)
# help: tutorials-prod - Build and start a docker container to run the tutorials (v0.6.1)
.PHONY: tutorials-prod
tutorials-prod:
@docker compose build tutorials-prod
@docker run -p 8888:8888 smartsim-tutorials:v0.6.0
@docker run -p 8888:8888 smartsim-tutorials:v0.6.1


# help:
Expand Down
4 changes: 3 additions & 1 deletion doc/_static/version_names.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"version_names":[
"develop (unstable)",
"0.6.0 (stable)",
"0.6.1 (stable)",
"0.6.0",
"0.5.1",
"0.5.0",
"0.4.2",
Expand All @@ -12,6 +13,7 @@
"version_urls": [
"https://www.craylabs.org/develop/overview.html",
"https://www.craylabs.org/docs/overview.html",
"https://www.craylabs.org/docs/versions/0.6.0/overview.html",
"https://www.craylabs.org/docs/versions/0.5.1/overview.html",
"https://www.craylabs.org/docs/versions/0.5.0/overview.html",
"https://www.craylabs.org/docs/versions/0.4.2/overview.html",
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import smartsim
version = smartsim.__version__
except ImportError:
version = "0.6.0"
version = "0.6.1"

# The full version, including alpha/beta/rc tags
release = version
Expand Down
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 @@ -19,7 +19,7 @@ into problems.
.. code-block:: bash

# setup Python and build environment
export ENV_NAME=smartsim-0.6.0
export ENV_NAME=smartsim-0.6.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.6.1/
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
- "8888:8888"

tutorials-prod:
image: smartsim-tutorials:v0.6.0
image: smartsim-tutorials:v0.6.1
build:
context: .
dockerfile: ./docker/prod/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion docker/prod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ COPY --chown=craylabs:root ./tutorials/ /home/craylabs/tutorials/
USER craylabs
RUN export PATH=/home/craylabs/.local/bin:$PATH && \
echo "export PATH=/home/craylabs/.local/bin:$PATH" >> /home/craylabs/.bashrc && \
python -m pip install smartsim[ml]==0.6.0 jupyter jupyterlab matplotlib && \
python -m pip install smartsim[ml]==0.6.1 jupyter jupyterlab matplotlib && \
smart build --device cpu -v && \
chown craylabs:root -R /home/craylabs/.local && \
rm -rf ~/.cache/pip
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 @@ -270,8 +270,8 @@ class Versioner:
PYTHON_MIN = Version_("3.8.0")

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

# Redis
Expand Down