Skip to content

Commit

Permalink
Merge pull request #373 from hugovk/add-3.9
Browse files Browse the repository at this point in the history
Add support for Python 3.8-3.9
  • Loading branch information
nicholasserra committed Oct 19, 2020
2 parents a7f9f24 + 2316326 commit 7612315
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
language: python
cache: pip
python:
- "pypy3"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9-dev"
# command to install dependencies
install: pip install Pygments>=2.5.2
# command to run tests
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
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
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Documentation
Expand All @@ -49,7 +51,8 @@
package_dir={"": "lib"},
scripts=[script],
description="A fast and complete Python implementation of Markdown",
classifiers=filter(None, classifiers.split("\n")),
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*",
classifiers=classifiers.strip().split("\n"),
long_description="""markdown2: A fast and complete Python implementation of Markdown.
Markdown is a text-to-HTML filter; it translates an easy-to-read /
Expand Down

0 comments on commit 7612315

Please sign in to comment.