Skip to content

Commit

Permalink
Drop Python 2.6 and 3.2 support; Issue #152
Browse files Browse the repository at this point in the history
  • Loading branch information
spaceone committed Jul 6, 2016
1 parent 25e78c0 commit f62fcd2
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Expand Up @@ -13,7 +13,7 @@ the problem ourselves.
### Environment and Platform

- OS: Linux, Windows or BSD / OS X?
- Python: 2.6, 2.7, 3.5, PyPy?
- Python: 2.7, 3.5, PyPy?
- circuits: 3.2? Something older?

----
3 changes: 0 additions & 3 deletions .travis.yml
Expand Up @@ -4,9 +4,6 @@ language: python

matrix:
include:
- os: linux
python: 2.6
env: TOXENV=py26
- os: linux
python: 2.7
env: TOXENV=py27
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -43,7 +43,7 @@ Supported Platforms
===================

- Linux, FreeBSD, Mac OS X, Windows
- Python 2.6, 2.7, 3.2, 3.3, 3.4
- Python 2.7, 3.3, 3.4, 3.5
- pypy 2.0, 2.1, 2.2

Installation
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -78,7 +78,7 @@ Supported Platforms
-------------------

- Linux, FreeBSD, Mac OS X, Windows
- Python 2.6, 2.7, 3.2, 3.3, 3.4
- Python 2.7, 3.3, 3.4, 3.5
- pypy 2.0, 2.1, 2.2


Expand Down
2 changes: 1 addition & 1 deletion docs/source/dev/environment.rst
Expand Up @@ -13,7 +13,7 @@ This is the recommended way to setup a development enviornment
for developing with or on circuits.

.. note:: This document *assumes* you already have a working `Python`_
environment with a minimum `Python`_ version of 2.6 as well
environment with a minimum `Python`_ version of 2.7 or 3.3 as well
as `pip`_ already installed.


Expand Down
2 changes: 1 addition & 1 deletion docs/source/faq.rst
Expand Up @@ -42,7 +42,7 @@ General
... What platforms does circuits support?
circuits currently supports Linux, FreeBSD, OSX and Windows and is
currently continually tested against Linux and Windows against Python
versions 2.6, 2.7, 3.1 and 3.2
versions 2.7, 3.3, 3.4 and 3.5

... Can circuits be used for concurrent or distributed programming?
Yes. We also have plans to build more distributed components into circuits
Expand Down
4 changes: 2 additions & 2 deletions docs/source/start/requirements.rst
Expand Up @@ -6,11 +6,11 @@ Requirements and Dependencies


- circuits has no **required** dependencies beyond the `Python Standard Library`_.
- Python: >= 2.6 or pypy >= 2.0
- Python: >= 2.7 or pypy >= 2.0

:Supported Platforms: Linux, FreeBSD, Mac OS X, Windows

:Supported Python Versions: 2.6, 2.7, 3.2, 3.3
:Supported Python Versions: 2.7, 3.3, 3.4, 3.5

:Supported pypy Versions: 2.0

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -43,11 +43,12 @@ def read_file(filename):
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Adaptive Technologies",
Expand Down

0 comments on commit f62fcd2

Please sign in to comment.