File tree Expand file tree Collapse file tree 13 files changed +21
-19
lines changed
installation_instructions/platform Expand file tree Collapse file tree 13 files changed +21
-19
lines changed Original file line number Diff line number Diff line change 8484 CIBW_ENVIRONMENT_MACOS : PATH="$(brew --prefix)/opt/make/libexec/gnubin:$PATH"
8585 MACOSX_DEPLOYMENT_TARGET : " 10.09"
8686
87- - uses : actions/upload-artifact@v2
87+ - uses : actions/upload-artifact@v3
8888 with :
8989 path : ./wheelhouse/*.whl
9090
@@ -105,7 +105,7 @@ jobs:
105105 python -m pip install cmake>=3.13
106106 python setup.py sdist
107107
108- - uses : actions/upload-artifact@v2
108+ - uses : actions/upload-artifact@v3
109109 with :
110110 path : dist/*.tar.gz
111111
@@ -114,7 +114,7 @@ jobs:
114114 needs : [build_wheels, build_sdist]
115115 runs-on : ubuntu-latest
116116 steps :
117- - uses : actions/download-artifact@v2
117+ - uses : actions/download-artifact@v3
118118 with :
119119 name : artifact
120120 path : dist
Original file line number Diff line number Diff line change 2222 language : Python
2323
2424 release :
25- version : 0.7 .0
26- date : 2024-05-14
25+ version : 0.8 .0
26+ date : 2024-09-25
2727
2828 documentation :
2929 general : https://www.craylabs.org/docs/overview.html
Original file line number Diff line number Diff line change @@ -150,11 +150,11 @@ tutorials-dev:
150150 @docker compose build tutorials-dev
151151 @docker run -p 8888:8888 smartsim-tutorials:dev-latest
152152
153- # help: tutorials-prod - Build and start a docker container to run the tutorials (v0.7 .0)
153+ # help: tutorials-prod - Build and start a docker container to run the tutorials (v0.8 .0)
154154.PHONY : tutorials-prod
155155tutorials-prod :
156156 @docker compose build tutorials-prod
157- @docker run -p 8888:8888 smartsim-tutorials:v0.7 .0
157+ @docker run -p 8888:8888 smartsim-tutorials:v0.8 .0
158158
159159
160160# help:
Original file line number Diff line number Diff line change 11{
22 "version_names" :[
33 " develop (unstable)" ,
4- " 0.7.0 (stable)" ,
4+ " 0.8.0 (stable)" ,
5+ " 0.7.0" ,
56 " 0.6.2" ,
67 " 0.6.1" ,
78 " 0.6.0" ,
1516 "version_urls" : [
1617 " https://www.craylabs.org/develop/overview.html" ,
1718 " https://www.craylabs.org/docs/overview.html" ,
19+ " https://www.craylabs.org/docs/versions/0.7.0/overview.html" ,
1820 " https://www.craylabs.org/docs/versions/0.6.2/overview.html" ,
1921 " https://www.craylabs.org/docs/versions/0.6.1/overview.html" ,
2022 " https://www.craylabs.org/docs/versions/0.6.0/overview.html" ,
Original file line number Diff line number Diff line change 99
1010## SmartSim
1111
12- ### Development branch
12+ ### 0.8.0
1313
14- To be released at some future point in time
14+ Released on 25 September, 2024
1515
1616Description
1717
Original file line number Diff line number Diff line change 2929 import smartsim
3030 version = smartsim .__version__
3131except ImportError :
32- version = "0.7 .0"
32+ version = "0.8 .0"
3333
3434# The full version, including alpha/beta/rc tags
3535release = version
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ into problems.
1919.. code-block :: bash
2020
2121 # setup Python and build environment
22- export ENV_NAME=smartsim-0.7 .0
22+ export ENV_NAME=smartsim-0.8 .0
2323 git clone https://github.com/CrayLabs/SmartRedis.git smartredis
2424 git clone https://github.com/CrayLabs/SmartSim.git smartsim
2525 conda config --prepend channels https://ftp.osuosl.org/pub/open-ce/1.6.1/
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ services:
1414 - " 8888:8888"
1515
1616 tutorials-prod :
17- image : smartsim-tutorials:v0.7 .0
17+ image : smartsim-tutorials:v0.8 .0
1818 build :
1919 context : .
2020 dockerfile : ./docker/prod/Dockerfile
2121 ports :
22- - " 8888:8888"
22+ - " 8888:8888"
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ COPY . /home/craylabs/SmartSim
5050RUN chown craylabs:root -R SmartSim
5151USER craylabs
5252
53- RUN cd SmartSim && SMARTSIM_SUFFIX=dev python -m pip install .[ml]
53+ RUN cd SmartSim && SMARTSIM_SUFFIX=dev python -m pip install .
5454
5555RUN export PATH=/home/craylabs/.local/bin:$PATH && \
5656 echo "export PATH=/home/craylabs/.local/bin:$PATH" >> /home/craylabs/.bashrc && \
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86
5252
5353 # Install SmartSim and SmartRedis
5454 RUN pip install git+https://github.com/CrayLabs/SmartRedis.git && \
55- pip install "smartsim[ml] @ git+https://github.com/CrayLabs/SmartSim.git"
55+ pip install "smartsim @ git+https://github.com/CrayLabs/SmartSim.git"
5656
5757 ENV CUDA_HOME="/usr/local/cuda/"
5858 ENV PATH="${PATH}:${CUDA_HOME}/bin"
You can’t perform that action at this time.
0 commit comments