File tree 9 files changed +15
-13
lines changed
installation_instructions/platform
9 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 22
22
language : Python
23
23
24
24
release :
25
- version : 0.6.2
26
- date : 2024-02-16
25
+ version : 0.7.0
26
+ date : 2024-05-14
27
27
28
28
documentation :
29
29
general : https://www.craylabs.org/docs/overview.html
Original file line number Diff line number Diff line change @@ -150,11 +150,11 @@ tutorials-dev:
150
150
@docker compose build tutorials-dev
151
151
@docker run -p 8888:8888 smartsim-tutorials:dev-latest
152
152
153
- # help: tutorials-prod - Build and start a docker container to run the tutorials (v0.6.2 )
153
+ # help: tutorials-prod - Build and start a docker container to run the tutorials (v0.7.0 )
154
154
.PHONY : tutorials-prod
155
155
tutorials-prod :
156
156
@docker compose build tutorials-prod
157
- @docker run -p 8888:8888 smartsim-tutorials:v0.6.2
157
+ @docker run -p 8888:8888 smartsim-tutorials:v0.7.0
158
158
159
159
160
160
# help:
Original file line number Diff line number Diff line change 1
1
{
2
2
"version_names" :[
3
3
" develop (unstable)" ,
4
- " 0.6.2 (stable)" ,
4
+ " 0.7.0 (stable)" ,
5
+ " 0.6.2" ,
5
6
" 0.6.1" ,
6
7
" 0.6.0" ,
7
8
" 0.5.1" ,
14
15
"version_urls" : [
15
16
" https://www.craylabs.org/develop/overview.html" ,
16
17
" https://www.craylabs.org/docs/overview.html" ,
18
+ " https://www.craylabs.org/docs/versions/0.6.2/overview.html" ,
17
19
" https://www.craylabs.org/docs/versions/0.6.1/overview.html" ,
18
20
" https://www.craylabs.org/docs/versions/0.6.0/overview.html" ,
19
21
" https://www.craylabs.org/docs/versions/0.5.1/overview.html" ,
Original file line number Diff line number Diff line change 9
9
10
10
## SmartSim
11
11
12
- ### Development branch
12
+ ### 0.7.0
13
13
14
- To be released at some future point in time
14
+ Released on 14 May, 2024
15
15
16
16
Description
17
17
Original file line number Diff line number Diff line change 29
29
import smartsim
30
30
version = smartsim .__version__
31
31
except ImportError :
32
- version = "0.6.2 "
32
+ version = "0.7.0 "
33
33
34
34
# The full version, including alpha/beta/rc tags
35
35
release = version
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ into problems.
19
19
.. code-block :: bash
20
20
21
21
# setup Python and build environment
22
- export ENV_NAME=smartsim-0.6.2
22
+ export ENV_NAME=smartsim-0.7.0
23
23
git clone https://github.com/CrayLabs/SmartRedis.git smartredis
24
24
git clone https://github.com/CrayLabs/SmartSim.git smartsim
25
25
conda config --prepend channels https://ftp.osuosl.org/pub/open-ce/1.6.1/
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ services:
18
18
- " 8888:8888"
19
19
20
20
tutorials-prod :
21
- image : smartsim-tutorials:v0.6.2
21
+ image : smartsim-tutorials:v0.7.0
22
22
build :
23
23
context : .
24
24
dockerfile : ./docker/prod/Dockerfile
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ COPY --chown=craylabs:root ./tutorials/ /home/craylabs/tutorials/
46
46
USER craylabs
47
47
RUN export PATH=/home/craylabs/.local/bin:$PATH && \
48
48
echo "export PATH=/home/craylabs/.local/bin:$PATH" >> /home/craylabs/.bashrc && \
49
- python -m pip install smartsim[ml]==0.6.2 jupyter jupyterlab matplotlib && \
49
+ python -m pip install smartsim[ml]==0.7.0 jupyter jupyterlab matplotlib && \
50
50
smart build --device cpu -v && \
51
51
chown craylabs:root -R /home/craylabs/.local && \
52
52
rm -rf ~/.cache/pip
Original file line number Diff line number Diff line change @@ -270,8 +270,8 @@ class Versioner:
270
270
PYTHON_MIN = Version_ ("3.9.0" )
271
271
272
272
# Versions
273
- SMARTSIM = Version_ (get_env ("SMARTSIM_VERSION" , "0.6.2 " ))
274
- SMARTREDIS = Version_ (get_env ("SMARTREDIS_VERSION" , "0.5.2 " ))
273
+ SMARTSIM = Version_ (get_env ("SMARTSIM_VERSION" , "0.7.0 " ))
274
+ SMARTREDIS = Version_ (get_env ("SMARTREDIS_VERSION" , "0.5.3 " ))
275
275
SMARTSIM_SUFFIX = get_env ("SMARTSIM_SUFFIX" , "" )
276
276
277
277
# Redis
You can’t perform that action at this time.
0 commit comments