4 Commits

7 changed files with 15 additions and 6 deletions

View File

@ -1,3 +1,12 @@
Flat_Tree 0.0.1a3 (2019-07-01)
==============================
Removals
--------
- Don't advertise Python 3.5 which is not supported. (#1)
Flat_Tree 0.0.1a2 (2019-07-01) Flat_Tree 0.0.1a2 (2019-07-01)
============================== ==============================

View File

@ -1,7 +1,7 @@
.. _header: .. _header:
********* *********
flat_tree flat-tree
********* *********
.. image:: https://img.shields.io/badge/license-MIT-brightgreen.svg .. image:: https://img.shields.io/badge/license-MIT-brightgreen.svg
@ -44,7 +44,7 @@ From `The Dat Protocol`_:
Documentation Documentation
************* *************
* https://flat_tree.readthedocs.io * https://flat-tree.readthedocs.io
.. _mirroring: .. _mirroring:

View File

1
changelog/1.removal.rst Normal file
View File

@ -0,0 +1 @@
Don't advertise Python 3.5 which is not supported.

View File

@ -3,6 +3,6 @@ copyright = '2019, decentral1se'
html_static_path = ['_static'] html_static_path = ['_static']
html_theme = 'alabaster' html_theme = 'alabaster'
master_doc = 'index' master_doc = 'index'
project = 'flat_tree' project = 'flat-tree'
templates_path = ['_templates'] templates_path = ['_templates']
extensions = ['sphinx.ext.autodoc', 'sphinx_autodoc_typehints'] extensions = ['sphinx.ext.autodoc', 'sphinx_autodoc_typehints']

View File

@ -4,7 +4,7 @@ Install
.. code-block:: bash .. code-block:: bash
$ pip install flat_tree $ pip install flat-tree
.. note:: .. note::

View File

@ -30,13 +30,12 @@ license = MIT
license_file = LICENSE license_file = LICENSE
classifiers = classifiers =
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.7
[options] [options]
use_scm_version = True use_scm_version = True
python_requires = !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.* python_requires = !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5
setup_requires = setup_requires =
setuptools_scm setuptools_scm
setuptools_scm_git_archive setuptools_scm_git_archive