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

Switch minimal python version to 3.6 #45

Merged
merged 1 commit into from
May 3, 2020
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
22 changes: 2 additions & 20 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,29 +24,11 @@ jobs:
- python setup.py sdist bdist_wheel
- python -m tox
env: TOXENV=lint
python: '2.7'
python: '3.6'
- stage: phase1
script: python -m tox
python: '2.7'
python: '3.6'
env: TOXENV=docs
- stage: phase1
script: python -m tox
python: '2.7'
env: TOXENV=py27
after_success:
- bash <(curl -s https://codecov.io/bash) -e TOX_ENV
- stage: phase2
script: python -m tox
python: '3.4'
env: TOXENV=py34
after_success:
- bash <(curl -s https://codecov.io/bash) -e TOX_ENV
- stage: phase2
script: python -m tox
python: '3.5'
env: TOXENV=py35
after_success:
- bash <(curl -s https://codecov.io/bash) -e TOX_ENV
- stage: phase2
script: python -m tox
python: '3.6'
Expand Down
9 changes: 1 addition & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,11 @@ Check:

Requirements and compatibility
------------------------------
* python 2.7-3.6
* python 3.6 or newer
* distribute (for installation)
* tox for running tests

Related project and packages
----------------------------
* six - helps you write code that works with both py2 and py3
* jaraco - http://pypi.python.org/pypi/jaraco.util
* pexpect (maybe)


TODO
----
* implement testing, see test frameworks http://pycheesecake.org/wiki/PythonTestingToolsTaxonomy
* implement all PEP8 recommendations
7 changes: 5 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ classifier =
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Internet :: WWW/HTTP

Expand All @@ -31,6 +31,9 @@ keywords =
colorer
singleton

[options]
python_requires = >=3.6

[files]
packages =
tendo
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 2.3.1
envlist = lint,docs,{py27,py34,py35,py36,py37}
envlist = lint,docs,{py36,py37,py38}
skip_missing_interpreters = true
tox_pyenv_fallback=True
ignore_errors=False
Expand Down