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

asynchat shim #321

Merged
merged 2 commits into from
Nov 15, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/Lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['3.10','3.11']
version: ['3.10','3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
# Lewis
Lewis - Let's write intricate simulators.

Lewis is a Python framework for simulating hardware devices. It is
compatible with Python 3.10 to 3.11.

It is currently not compatible with 3.12 as the asyncchat module has been removed from Python.
We are going to fix this at some point.
Lewis is a Python framework for simulating hardware devices.

Lewis can be installed via pip or ran from source. See relevant usage sections of the docs for more details.

Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name="lewis"
description="Lewis - Let's write intricate simulators!"
requires-python="<3.12"
requires-python=">=3.10"
readme="README.md"
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down Expand Up @@ -32,7 +32,8 @@ dependencies=[
"json-rpc",
"semantic_version",
"PyYAML",
"scanf"
"scanf",
"pyasynchat;python_version >= '3.12'",
]

[project.optional-dependencies]
Expand Down