aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2024-03-01 17:19:34 +0100
committerMatěj Cepl <mcepl@cepl.eu>2024-03-01 17:27:17 +0100
commit1a28c0ff29268c55099e30b2b1e57e985a9ee874 (patch)
tree6b8a30ac3fa8808e76d6c11335b70f5aad864ed3
parentf85c97e9f14a893424f96ced0b4a517369b918c0 (diff)
downloadnntplib-1a28c0ff29268c55099e30b2b1e57e985a9ee874.tar.gz
chore: Fix URL of the home page.0.1.2
-rw-r--r--.gitignore1
-rw-r--r--CHANGES6
-rw-r--r--pyproject.toml4
-rw-r--r--src/nntplib.egg-info/PKG-INFO17
4 files changed, 23 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index ef08942..b31d3a5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,3 +18,4 @@ TAGS
.pytest_cache/
.DS_Store
dist/
+*.patch
diff --git a/CHANGES b/CHANGES
index 5dd8036..1c19fd3 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,9 @@
+0.1.2 - 2024-03-01
+------------------
+
+- Fix the URL of the home page, now when the package became
+ relevant.
+
0.1.1 - 2023-04-14
------------------
diff --git a/pyproject.toml b/pyproject.toml
index 4b84c03..3ab6351 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "nntplib"
-version = "0.1.1"
+version = "0.1.2"
description = "nntplib from Python 3 standard library as an independent module"
keywords = ["nntp"]
authors = [
@@ -22,7 +22,7 @@ classifiers = [
]
[project.urls]
-"Homepage" = "https://sr.ht/~mcepl/nntplib/"
+"Homepage" = "https://git.cepl.eu/cgit/python/nntplib/"
"Bug Tracker" = "https://lists.sr.ht/~mcepl/devel"
# [project.scripts]
diff --git a/src/nntplib.egg-info/PKG-INFO b/src/nntplib.egg-info/PKG-INFO
index 7374de6..284e596 100644
--- a/src/nntplib.egg-info/PKG-INFO
+++ b/src/nntplib.egg-info/PKG-INFO
@@ -1,14 +1,14 @@
Metadata-Version: 2.1
Name: nntplib
-Version: 0.1.1
+Version: 0.1.2
Summary: nntplib from Python 3 standard library as an independent module
Author-email: Matěj Cepl <mcepl@cepl.eu>
License: BSD-3-Clause
-Project-URL: Homepage, https://sr.ht/~mcepl/nntplib/
+Project-URL: Homepage, https://git.cepl.eu/cgit/python/nntplib/
Project-URL: Bug Tracker, https://lists.sr.ht/~mcepl/devel
Keywords: nntp
Classifier: Framework :: Django
-Classifier: License :: OSI Approved :: BSD License
+Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Topic :: Internet
Classifier: Topic :: Communications :: Usenet News
Classifier: Topic :: Software Development :: Libraries
@@ -16,9 +16,20 @@ Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Description-Content-Type: text/markdown
License-File: LICENSE
+Requires-Dist: importlib-metadata; python_version < "3.8"
nntplib library from Python 3 standard library as an independent module.
+Because `nntplib` is still a valid library in all relevant
+versions of the standard library up to and including Python 3.12,
+so when asking for it, the care should be made to avoid the
+conflict. For example, use this line in your `pyproject.toml`
+`project.dependencies` section:
+
+```
+ 'nntplib; python_version>="3.12"'
+```
+
All issues, questions, complaints, or (even better!) patches
should be send via email to
[~mcepl/devel@lists.sr.ht](mailto:~mcepl/devel@lists.sr.ht) email