Skip to content
This repository was archived by the owner on Jul 30, 2023. It is now read-only.

Commit fd7b33e

Browse files
committed
Bump version, update CHANGELOG.
1 parent 61aae1d commit fd7b33e

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.0
2+
3+
* Bump Markdown version to ≥3.3 and Python version to ≥3.8.
4+
15
## 1.0.2
26

37
* Remove LICENSE from the package files to prevent issue #23.

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="py-gfm",
8-
version="1.0.2",
8+
version="2.0.0",
99
description="An implementation of Github-Flavored Markdown written as an "
1010
"extension to the Python Markdown library.",
1111
long_description=long_description,
@@ -16,17 +16,17 @@
1616
packages=find_packages(),
1717
include_package_data=True,
1818
install_requires=["markdown>=3.3,<4"],
19-
python_requires=">=3.7",
19+
python_requires=">=3.8",
2020
classifiers=[
2121
"Environment :: Web Environment",
2222
"Intended Audience :: Developers",
2323
"Operating System :: OS Independent",
2424
"Topic :: Text Processing :: Markup",
2525
"License :: OSI Approved :: BSD License",
2626
"Programming Language :: Python :: 3",
27-
"Programming Language :: Python :: 3.5",
28-
"Programming Language :: Python :: 3.6",
29-
"Programming Language :: Python :: 3.7",
3027
"Programming Language :: Python :: 3.8",
28+
"Programming Language :: Python :: 3.9",
29+
"Programming Language :: Python :: 3.10",
30+
"Programming Language :: Python :: 3.11",
3131
],
3232
)

0 commit comments

Comments
 (0)