Skip to content

Commit

Permalink
Update changelog [ICE-51] (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
lslunis authored Feb 22, 2023
2 parents cd9e1ec + 565236c commit da187fb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.5.0] - 2023-02-22

### Added

- Secrets are now optional. Any secrets needed to run a recipe will be prompted for
and stored in `$OUGHT_ICE_DIR/.env`.
- ICE now supports Python 3.9 and 3.11.

## [0.4.0] - 2022-12-27

### Added
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ICE is a Python library and trace visualizer for language model programs.

## Requirements

ICE requires Python 3.10. If you only have newer or older version(s) of Python installed, we recommend using [pyenv](https://github.com/pyenv/pyenv) to install Python 3.10 and manage multiple Python versions.
ICE requires Python 3.9, 3.10, or 3.11. If you don't have a supported version of Python installed, we recommend using [pyenv](https://github.com/pyenv/pyenv) to install a supported Python version and manage multiple Python versions.

If you use Windows, you'll need to run ICE inside of [WSL](https://learn.microsoft.com/en-us/windows/wsl/install).

Expand All @@ -32,7 +32,7 @@ If you use Windows, you'll need to run ICE inside of [WSL](https://learn.microso
1. As part of general good Python practice, consider first creating and activating a [virtual environment](https://docs.python.org/3/library/venv.html) to avoid installing ICE 'globally'. For example:

```shell
python3.10 -m venv venv
python -m venv venv
source venv/bin/activate
```

Expand All @@ -51,7 +51,7 @@ If you use Windows, you'll need to run ICE inside of [WSL](https://learn.microso
1. If you want to make changes to ICE itself, clone the repository, then install it in editable mode:
```shell
python3.10 -m venv venv
python -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -e '.[dev]' --config-settings editable_mode=compat
Expand Down

0 comments on commit da187fb

Please sign in to comment.