Skip to content

Commit c63793b

Browse files
committed
Reduino 1.2.0 Release
1 parent e6833a1 commit c63793b

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "Reduino"
7-
version = "1.1.0"
7+
version = "1.2.0"
88
description = "Reduino transpiles Python scripts into efficient Arduino C++ and uploads automatically. A simple, intuitive way to control sensors, LEDs, and actuators without touching C++."
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -23,12 +23,8 @@ classifiers = [
2323

2424
dependencies = [
2525
"pyserial",
26-
"pytest"
2726
]
2827

29-
[project.optional-dependencies]
30-
dev = ["pytest", "ruff", "mypy", "build", "twine"]
31-
3228
[tool.setuptools]
3329
package-dir = {"" = "src"}
3430

src/Reduino/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""User-facing helpers for the Reduino transpiler package."""
44

55
__all__ = ["target"]
6-
__version__ = "1.1.0"
6+
__version__ = "1.2.0"
77

88
import pathlib
99
import sys

0 commit comments

Comments
 (0)