Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REL: Officially drop python2.7 support #263

Merged
merged 7 commits into from
Apr 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pypandoc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from .py3compat import cast_bytes, cast_unicode, string_types, url2path, urlparse

__author__ = u'Juho Vepsäläinen'
__version__ = '1.7.4'
__version__ = '1.8.dev0'
__license__ = 'MIT'
__all__ = ['convert_file', 'convert_text',
'get_pandoc_formats', 'get_pandoc_version', 'get_pandoc_path',
Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pypandoc"
version = "1.7.4"
version = "1.8.dev0"
description = "Thin wrapper for pandoc"
authors = ["NicklasTegner <[email protected]>"]
license = "MIT"
Expand All @@ -16,8 +16,6 @@ classifiers = [
'Programming Language :: Python',
'Topic :: Text Processing',
'Topic :: Text Processing :: Filters',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
Expand All @@ -41,7 +39,7 @@ include = [
]

[tool.poetry.dependencies]
python = "^2.7 || ^3.6"
python = "^3.6"

[tool.poetry.dev-dependencies]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ def run(self):
author_email = '[email protected]',
packages = ['pypandoc'],
package_data={'pypandoc': ['files/*']},
python_requires=">=3.6",
install_requires = ['setuptools', 'pip>=8.1.0', 'wheel>=0.25.0'],
classifiers=[
'Development Status :: 4 - Beta',
Expand All @@ -98,7 +99,6 @@ def run(self):
'Programming Language :: Python',
'Topic :: Text Processing',
'Topic :: Text Processing :: Filters',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
Expand Down