diff options
author | Lorenz Diener <[email protected]> | 2020-02-16 17:24:55 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-16 17:24:55 +0100 |
commit | e157e91dfe6540ecdadf9c581fe3ccd34649812b (patch) | |
tree | 04cf15e2e805d348e67e70504b0c1b159e335bdf | |
parent | 90ae6a655ee16f8f40affdf76b78ff61ef2976da (diff) | |
download | mastodon.py-e157e91dfe6540ecdadf9c581fe3ccd34649812b.tar.gz |
Update DEVELOPMENT.md
-rw-r--r-- | DEVELOPMENT.md | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index cd70b96..3fded99 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md | |||
@@ -1,5 +1,10 @@ | |||
1 | Here's some general stuff to keep in mind, and some work that needs to be done: | 1 | Here's some general stuff to keep in mind, and some work that needs to be done: |
2 | 2 | ||
3 | * 3.1 support is currently incomplete, patches welcome, especially if they contain unit tests: | ||
4 | * Add announcements | ||
5 | * Add announcement reactions | ||
6 | * Add bookmarks and bookmarks oauth scopes | ||
7 | |||
3 | * If you'd like to contribute, here's some suggestions: | 8 | * If you'd like to contribute, here's some suggestions: |
4 | * Features are currently up to date and mostly tested, but there are some areas where tests could be | 9 | * Features are currently up to date and mostly tested, but there are some areas where tests could be |
5 | better. Check the codecov page and try to add tests those areas. | 10 | better. Check the codecov page and try to add tests those areas. |
@@ -11,7 +16,7 @@ Here's some general stuff to keep in mind, and some work that needs to be done: | |||
11 | * Figure out what they do different and file issues / document it | 16 | * Figure out what they do different and file issues / document it |
12 | * Where code can be written to support alternate implementations or different features, write code to do this | 17 | * Where code can be written to support alternate implementations or different features, write code to do this |
13 | * Write tests specific to these features | 18 | * Write tests specific to these features |
14 | * Mastodon.py still somewhat tries to work for python2 as well as python3, so avoid things like annotations, | 19 | * We now have a "feature set" parameter to support these better. |
15 | use requests over urllib, et cetera. However, python2 is not officially supported and not tested for anymore, | 20 | |
16 | and once python2 reaches end of life (January 1st, 2020), this is over with. | 21 | |
17 | 22 | ||