Skip to content

Commit

Permalink
bump version for dropping Python 2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
xflr6 committed Jan 5, 2021
1 parent 09bbd4f commit 0307ae2
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 16 deletions.
6 changes: 3 additions & 3 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ Changelog
=========


Version 0.16.1 (in development)
-------------------------------

Version 0.17 (in development)
-----------------------------

Drop Python 2 support.


Version 0.16
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2013-2020 Sebastian Bank
Copyright (c) 2013-2021 Sebastian Bank

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Links
Installation
------------

This package runs under Python 2.7, and 3.6+, use pip_ to install:
This package runs under Python 3.6+, use pip_ to install:

.. code:: bash
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
# -- Project information -----------------------------------------------------

project = 'graphviz'
copyright = '2013-2020, Sebastian Bank'
copyright = '2013-2021, Sebastian Bank'
author = 'Sebastian Bank'

# The short X.Y version
version = '0.16.1.dev0'
version = '0.17.dev0'
# The full version, including alpha/beta/rc tags
release = version

Expand Down
8 changes: 4 additions & 4 deletions docs/manual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ Installation
------------

:mod:`graphviz` provides a simple pure-Python interface for the Graphviz_
graph-drawing software. It runs under Python 2.7 and 3.6+. To install it
with pip_ run the following:
graph-drawing software. It runs under Python 3.6+. To install it with pip_, run
the following:

.. code:: bash
$ pip install graphviz
For a system-wide install, this typically requires administrator access. For an
isolated install, you can run the same inside a virtualenv_ or a
:mod:`py3:venv` (Python 3 only).
isolated install, you can run the same inside a :mod:`py3:venv` or a
virtualenv_.

The only dependency is a working installation of Graphviz (`download page`_,
`installation procedure for Windows`_, `archived versions`_).
Expand Down
4 changes: 2 additions & 2 deletions graphviz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
'ExecutableNotFound', 'RequiredArgumentError']

__title__ = 'graphviz'
__version__ = '0.16.1.dev0'
__version__ = '0.17.dev0'
__author__ = 'Sebastian Bank <sebastian.bank@uni-leipzig.de>'
__license__ = 'MIT, see LICENSE.txt'
__copyright__ = 'Copyright (c) 2013-2020 Sebastian Bank'
__copyright__ = 'Copyright (c) 2013-2021 Sebastian Bank'

#: Set of known layout commands used for rendering (``'dot'``, ``'neato'``, ...)
ENGINES = ENGINES
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='graphviz',
version='0.16.1.dev0',
version='0.17.dev0',
author='Sebastian Bank',
author_email='sebastian.bank@uni-leipzig.de',
description='Simple Python interface for Graphviz',
Expand Down Expand Up @@ -34,8 +34,6 @@
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
Expand Down

0 comments on commit 0307ae2

Please sign in to comment.