Skip to content

Commit dd4a084

Browse files
committed
bump version: 0.7.1, fix description in the pypi page
1 parent 3abd6f5 commit dd4a084

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
0.7.0 (pending)
1+
0.7.1 (2025-01-02)
2+
------------------
3+
4+
* packaging: refresh package description and metadata for pypi
5+
6+
0.7.0 (2025-01-02)
27
------------------
38

49
* compat: compatibility with python 3.11 and later

notebooker/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.0"
1+
__version__ = "0.7.1"

setup.cfg

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,11 @@ classifiers =
1212
Framework :: Flask
1313
Framework :: IPython
1414
Framework :: Jupyter
15-
Programming Language :: Python :: 3.6
1615
Operating System :: POSIX
1716
Operating System :: MacOS :: MacOS X
1817
Operating System :: Microsoft :: Windows :: Windows 10
1918
Topic :: Internet :: WWW/HTTP
2019
Topic :: Internet :: WWW/HTTP :: WSGI :: Application
21-
Topic :: Software Development :: Libraries
2220

2321
[options]
2422
setup_requires =

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,19 @@ def get_long_description():
1818
for filename in ("README.md", "CHANGELOG.md"):
1919
with open(filename, "r", encoding="utf-8") as f:
2020
desc += f.read()
21+
desc += "\n\n"
2122
return desc
2223

2324

2425
setup(
2526
version=get_version(),
2627
packages=find_packages(exclude=["tests", "tests.*", "benchmarks"]),
2728
namespace_packages=["notebooker"],
28-
python_requires=">=3.5",
29+
python_requires=">=3.6",
2930
zip_safe=False,
3031
include_package_data=True,
32+
long_description=get_long_description(),
33+
long_description_content_type='text/markdown',
3134
entry_points={
3235
"console_scripts": [
3336
"notebooker-cli = notebooker._entrypoints:base_notebooker",

0 commit comments

Comments
 (0)