mirror of https://github.com/Shizmob/pydle.git
Compare commits
6 Commits
b85f59b422
...
640f5ea0fc
Author | SHA1 | Date |
---|---|---|
Joshua Salzedo | 640f5ea0fc | |
Joshua Salzedo | 99d9878232 | |
Joshua Salzedo | 63de999fe9 | |
txtsd | 133f72d059 | |
Joshua Salzedo | 504459a064 | |
David Sangrey | 77ce620011 |
|
@ -10,3 +10,5 @@ __pycache__
|
|||
/.tox
|
||||
/*.egg-info
|
||||
|
||||
.idea
|
||||
*venv*
|
|
@ -3,7 +3,7 @@ pydle
|
|||
Python IRC library.
|
||||
-------------------
|
||||
|
||||
pydle is a compact, flexible and standards-abiding IRC library for Python 3.5 through 3.9.
|
||||
pydle is a compact, flexible and standards-abiding IRC library for Python 3.6 through 3.9.
|
||||
|
||||
Features
|
||||
--------
|
||||
|
|
|
@ -4,7 +4,7 @@ Introduction to pydle
|
|||
|
||||
What is pydle?
|
||||
--------------
|
||||
pydle is an IRC library for Python 3.5 through 3.9.
|
||||
pydle is an IRC library for Python 3.6 through 3.9.
|
||||
|
||||
Although old and dated on some fronts, IRC is still used by a variety of communities as the real-time communication method of choice,
|
||||
and the most popular IRC networks can still count on tens of thousands of users at any point during the day.
|
||||
|
@ -35,8 +35,8 @@ All dependencies can be installed using the standard package manager for Python,
|
|||
|
||||
Compatibility
|
||||
-------------
|
||||
pydle works in any interpreter that implements Python 3.5-3.9. Although mainly tested in CPython_, the standard Python implementation,
|
||||
there is no reason why pydle itself should not work in alternative implementations like PyPy_, as long as they support the Python 3.5 language requirements.
|
||||
pydle works in any interpreter that implements Python 3.6-3.9. Although mainly tested in CPython_, the standard Python implementation,
|
||||
there is no reason why pydle itself should not work in alternative implementations like PyPy_, as long as they support the Python 3.6 language requirements.
|
||||
|
||||
.. _CPython: https://python.org
|
||||
.. _PyPy: http://pypy.org
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "pydle"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
description = "A compact, flexible, and standards-abiding IRC library for python3."
|
||||
authors = ["Shiz <hi@shiz.me>"]
|
||||
repository = "https://github.com/Shizmob/pydle"
|
||||
|
@ -8,7 +8,7 @@ keywords = ["irc", "library","python3","compact","flexible"]
|
|||
license = "BSD"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = ">=3.6;<3.10"
|
||||
python = ">=3.6,<3.10"
|
||||
|
||||
[tool.poetry.dependencies.pure-sasl]
|
||||
version = "^0.6.2"
|
||||
|
|
Loading…
Reference in New Issue