Skip to content

Commit

Permalink
package: reduce min python version to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ajfabbri committed Oct 8, 2024
1 parent 8581850 commit 627537b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions interface_gen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and [avrotize](https://github.com/clemensv/avrotize).

## Installation

This folder requires Python version 3.10 or later*. You'll need to install
This folder requires Python version 3.9 or later*. You'll need to install
dependencies before running the scripts here. We recommend installing these in
the local folder using a python virtual environment (venv), to avoid changing your
system's global python packages:
Expand All @@ -22,8 +22,8 @@ python -m pip intstall -r requirements.txt # install dependencies, e.g. avr

To exit the virtualenv, simply run the command `deactivate` from your shell.

\* Note: The requirement for python >= 3.10 can be relaxed if it causes
trouble. We just need to change type annotation syntax a bit.
\* Note: The requirement for python >= 3.9 can be relaxed if you're willing to
test and debug any issues. \*

## Generating Schemas & Code, Running Tests

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.20"
authors = [{ name = "Aaron Fabbri", email = "[email protected]" }]
description = "Define data format schemas once and generate code for multiple languages and serialization frameworks."
readme = "dist-readme.md"
requires-python = ">=3.10"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 627537b

Please sign in to comment.