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

Commit

Permalink
Bump version, update CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
zopieux committed Nov 18, 2022
1 parent 61aae1d commit fd7b33e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.0

* Bump Markdown version to ≥3.3 and Python version to ≥3.8.

## 1.0.2

* Remove LICENSE from the package files to prevent issue #23.
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="py-gfm",
version="1.0.2",
version="2.0.0",
description="An implementation of Github-Flavored Markdown written as an "
"extension to the Python Markdown library.",
long_description=long_description,
Expand All @@ -16,17 +16,17 @@
packages=find_packages(),
include_package_data=True,
install_requires=["markdown>=3.3,<4"],
python_requires=">=3.7",
python_requires=">=3.8",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Markup",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)

0 comments on commit fd7b33e

Please sign in to comment.