Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog [ICE-51] #280

Merged
merged 3 commits into from
Feb 22, 2023
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
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