Skip to content
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: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ doc/html/
doc/doctrees/
src/pyfuse3/__init__.c
src/pyfuse3/__init__*.so
src/*.so
src/pyfuse3.c
test/.cache/
__pycache__
test/.pytest_cache/
Expand Down
23 changes: 10 additions & 13 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,9 @@
..
NOTE: We cannot use sophisticated ReST syntax (like
e.g. :file:`foo`) here because this isn't rendered correctly
by PyPi and/or BitBucket.
by PyPi.


Warning - no longer developed!
==============================

pyfuse3 is no longer actively developed and just receiving community-contributed
maintenance to keep it alive for some time.

A good alternative for some use cases might be `mfusepy <https://github.com/mxmlnkn/mfusepy>`_.

The pyfuse3 Module
==================

Expand All @@ -37,11 +29,16 @@ questions, please use the general `FUSE mailing list`_. A searchable
Development Status
------------------

pyfuse3 is in beta. Bugs are likely.
pyfuse3 is stable when used with Trio. The current maintainers ensure that bugs
are addressed and pyfuse3 continues to work with new Python and libfuse
versions. There is no plan to add new features or other non-bugfix work.
However, pull requests for new features or other improvements may be accepted.

Using pyfuse3 with asyncio (rather than Trio) support is less well tested,
there may be bugs, and some of them may not be easily fixable.

pyfuse3 uses semantic versioning. This means backwards incompatible
changes in the API will be reflected in an increase of the major
version number.
If you need a synchronous (non async) implementation, `mfusepy <https://github.com/mxmlnkn/mfusepy>`_
is a maintained alternative.


Contributing
Expand Down
Loading