Compare commits

...

6 Commits

Author SHA1 Message Date
Joshua Salzedo 640f5ea0fc
Merge pull request #184 from Shizmob/develop
v1.0.1
2022-11-04 20:17:39 -07:00
Joshua Salzedo 99d9878232 bump version to 1.0.1 2022-11-04 20:15:39 -07:00
Joshua Salzedo 63de999fe9
Merge pull request #182 from txtsd/poetry_fix
Adjust python version inequality string for Poetry
2022-11-03 21:42:26 -07:00
txtsd 133f72d059
fix(poetry): Adjust python version inequality string
Signed-off-by: txtsd <code@ihavea.quest>
2022-11-02 20:21:17 +05:30
Joshua Salzedo 504459a064
Merge pull request #179 from Rixxan/docs-3.5
[Docs] Document Dropping of 3.5
2022-08-22 17:15:13 -07:00
David Sangrey 77ce620011
[Docs] Document Dropping of 3.5
1.0 indicated dropping of support for Python 3.4 and below, however silently also dropped support for Python 3.5. This documents that change.
2022-07-17 21:37:34 -04:00
4 changed files with 8 additions and 6 deletions

2
.gitignore vendored
View File

@ -10,3 +10,5 @@ __pycache__
/.tox
/*.egg-info
.idea
*venv*

View File

@ -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
--------

View File

@ -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

View File

@ -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"