Skip to content

Commit

Permalink
Add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
beregond committed Nov 10, 2023
1 parent 6d52abb commit 49aa82f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Features

* Fully tested with Python 3.8+.

* Support for PyPy 3.8 (see implementation notes in docs for more details).
* Support for PyPy 3.9 and 3.10 (see implementation notes in docs for more details).

* Create Django-like models:

Expand Down
1 change: 1 addition & 0 deletions history/1699638234308787-45de861
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Removed PyPy 3.8 support.
1 change: 1 addition & 0 deletions history/1699638246045444-8a28355
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added PyPy 3.9 support.
1 change: 1 addition & 0 deletions history/1699638249190193-1aa7841
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added PyPy 3.10 support.
8 changes: 4 additions & 4 deletions tests/test_memory_usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ class User(Base):
name = StringField()


@mark.skipif(
platform.python_implementation() == "PyPy",
reason="PyPy's weakref implementation is not stable.",
)
#@mark.skipif(
# platform.python_implementation() == "PyPy",
# reason="PyPy's weakref implementation is not stable.",
#)
def test_garbage_collecting():
first = len(User.name.memory)
instance = User(name="Bob")
Expand Down

0 comments on commit 49aa82f

Please sign in to comment.