Skip to content
Open
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 .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.11'

- name: Install uv
uses: astral-sh/setup-uv@v4

- name: Install dependencies
run: |
uv sync --all-extras --group ci --python 3.9
uv sync --all-extras --group ci --python 3.11

- name: Check sentence casing
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.11'

- name: Install uv
uses: astral-sh/setup-uv@v4

- name: Install dependencies
run: |
uv sync --all-extras --group ci --python 3.9
uv sync --all-extras --group ci --python 3.11

- name: Bump version and commit change
run: |
Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This is a Python package (`moderne-visualizations-misc`) that provides data visu
source .venv/bin/activate
```

2. **Python Version**: Requires Python 3.9+
2. **Python Version**: Requires Python 3.11+ (matches the Moderne platform's notebook runtime, which ships CPython 3.11)

## Essential Development Commands

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jupyter notebook

## Contributing

* Install a Python version >= 3.9 and < 3.13 (3.9 recommended). [pyenv](https://github.com/pyenv/pyenv) makes this easy.
* Install a Python version >= 3.11 and < 3.13 (3.11 recommended, matching the Moderne platform runtime). [pyenv](https://github.com/pyenv/pyenv) makes this easy.

* Install [uv](https://docs.astral.sh/uv/getting-started/installation/)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
{ name = "Kyle Scully", email = "kyle@moderne.io" }
]
license = { text = "Apache-2.0" }
requires-python = ">=3.9"
requires-python = ">=3.11"

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
requires-python = ">=3.11"
requires-python = "=3.11"

should probably be explicit

dependencies = [
"code-data-science==2.2.0",
"graphviz==0.20.1",
Expand Down
Loading
Loading