Skip to content

Commit

Permalink
#97: assumes that Pyment needs at least Python 3.6 to run
Browse files Browse the repository at this point in the history
  • Loading branch information
dadadel committed Mar 8, 2021
1 parent b44e4a8 commit aeca06a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 16 deletions.
12 changes: 6 additions & 6 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ environment:
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.

- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Miniconda"
- PYTHON: "C:\\Miniconda-x64"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Miniconda34-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Miniconda35-x64"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Miniconda36-x64"
- PYTHON: "C:\\Python37-x64"
- PYTHON: "C:\\Miniconda37-x64"
- PYTHON: "C:\\Python38-x64"
- PYTHON: "C:\\Miniconda38-x64"
- PYTHON: "C:\\Python39-x64"
- PYTHON: "C:\\Miniconda39-x64"

install:
# We need wheel installed to build wheels
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"

# command to install dependencies
install:
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
0.4.0:
- add support to type hints (PEP 484)
- issues #46, #69, #93
- stop supporting running Pyment with Python from version 2.7 to 3.5
- issues #46, #69, #93, #97
- integrate PRs #96

0.3.4 - 2021/03/04:
Expand Down
7 changes: 2 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ Windows: |appveyor|
**Supported Versions**

.. image:: https://img.shields.io/badge/python-2.7-blue.svg
:target: https://img.shields.io/badge/python-2.7-blue.svg
:alt: Supports Python27
.. image:: https://img.shields.io/badge/python-3.4-blue.svg
.. image:: https://img.shields.io/badge/python-3.4-blue.svg
:target: https://img.shields.io/badge/python-3.4-blue.svg
:alt: Supports Python34
.. image:: https://img.shields.io/badge/python-3.5-blue.svg
Expand Down Expand Up @@ -58,7 +55,7 @@ Windows: |appveyor|
Description
-----------

This Python (2.7, 3+) program intends to help Python programmers to enhance inside code documentation using docstrings.
This Python3 program intends to help Python programmers to enhance inside code documentation using docstrings.
It is useful for code not well documented, or code without docstrings, or some not yet or partially documented code, or a mix of all of this :-)
It can be helpful also to harmonize or change a project docstring style format.

Expand Down
2 changes: 1 addition & 1 deletion doc/sphinx/source/pyment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The first is using the command line options (`pyment --help`). The second is pro
Using Pyment
============

Pyment runs under Python 2.7+/3+. But if *argparser* is installed it can run under Python 2.6, and maybe less.
Pyment runs using Python3.6+.

Pyment is usable as is on command line using pyment script. But it can also be used inside a Python program.

Expand Down

0 comments on commit aeca06a

Please sign in to comment.