Skip to content

Commit

Permalink
Release new version
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed Feb 16, 2024
1 parent fd09560 commit 734efc6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Changelog

### Future
- Add Python 3.12 to CI
### 0.3.3 - 2024-02-16
- Add Python 3.12 and 3.13 to CI
- Can now be imported on Python 3.13
- Add Python 3.13 to CI, two tests depending on parso marked xfail as parso does not support 3.13

### 0.3.2 - 2024-01-13
- Performance improvements based on
Expand Down
2 changes: 1 addition & 1 deletion src/hypothesmith/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
from hypothesmith.cst import from_node
from hypothesmith.syntactic import from_grammar

__version__ = "0.3.2"
__version__ = "0.3.3"
__all__ = ["from_grammar", "from_node"]
2 changes: 1 addition & 1 deletion src/hypothesmith/syntactic.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from importlib.resources import read_text

LARK_GRAMMAR = read_text("hypothesmith", "python.lark")
else:
else: # pragma: no cover # not on py38, anyway
from importlib.resources import files

LARK_GRAMMAR = (
Expand Down

0 comments on commit 734efc6

Please sign in to comment.