Last change
on this file since 246:388bfe3e4ea7 was
240:3a201c5b385f,
checked in by Ralph Meijer <ralphm@…>, 4 years ago
|
Use incremental instead of t.p.versions everywhere
twisted.python.versions is a precursor of the incremental library
but isn't fully API compatible. This caused breakage with older Twisted
versions. Switching to incremental everywhere resolves this. Also fix
the version to at least 16.9.0, which introduced the release_candidate
parameter.
|
File size:
274 bytes
|
Line | |
---|
1 | # Copyright (c) Ralph Meijer. |
---|
2 | # See LICENSE for details |
---|
3 | |
---|
4 | """ |
---|
5 | Wokkel. |
---|
6 | |
---|
7 | Support library for Twisted applications using XMPP protocols. |
---|
8 | """ |
---|
9 | |
---|
10 | from wokkel._version import __version__ as _incremental_version |
---|
11 | |
---|
12 | __version__ = _incremental_version.public() |
---|
13 | |
---|
14 | __all__ = ["__version__"] |
---|
Note: See
TracBrowser
for help on using the repository browser.