Skip to content

Commit

Permalink
Stop testing Python 3.5 (EOL 2020-09-13)
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Apr 1, 2021
1 parent 62ad58a commit 0dfa732
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Expand Up @@ -12,17 +12,18 @@ jobs:
dist: xenial
- python: "3.6"
env: TOXENV=py36
- python: "3.5"
env: TOXENV=py35
# - python: "3.5" # EOL 2020-09-13
# env: TOXENV=py35
- python: "3.10-dev"
env: TOXENV=py310
allow_failures:
- python: "3.10-dev"
env: TOXENV=py310
before_install:
# Fix for cryptography on Py36
- pip install --upgrade virtualenv
install:
- pip install tox-travis flake8 coveralls coverage isort
# Fix for build error on travis/py36
- pip install -U virtualenv
script:
- tox
after_success:
Expand Down
6 changes: 3 additions & 3 deletions docs/sphinx/development.rst
Expand Up @@ -27,11 +27,11 @@ Work in a Virtual Environment

Install Python
^^^^^^^^^^^^^^
We need `Python 3.5+ <https://www.python.org/downloads/>`_,
We need `Python 3.6+ <https://www.python.org/downloads/>`_,
and `pipenv <https://pipenv.pypa.io/>`_ on our system.

If you want to run tests on *all* supported platforms, install Python 3.5,
3.6, 3.7, and 3.8.
If you want to run tests on *all* supported platforms, install Python
3.6, 3.7, 3.8, 3.9, and 3.10.

Create and Activate the Virtual Environment
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/index.rst
Expand Up @@ -53,7 +53,7 @@ Quickstart

Releases are hosted on `PyPI <https://pypi.python.org/pypi/yabs>`_ and can
be installed using `pipenv <https://pipenv.pypa.io/>`_
(`Python 3.5+ <https://www.python.org/downloads/>`_ is required) ::
(`Python 3.6+ <https://www.python.org/downloads/>`_ is required) ::

$ pipenv shell
(yabs) $ pipenv install yabs --upgrade
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/installation.rst
@@ -1,7 +1,7 @@
Installation
============

Requirements: `Python <https://www.python.org/downloads/>`_ 3.5+ is required.
Requirements: `Python <https://www.python.org/downloads/>`_ 3.6+ is required.
Releases are hosted on `PyPI <https://pypi.python.org/pypi/yabs>`_ and can
be installed using
`pip <https://pip.pypa.io/en/stable>`_
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/yabs_annotated.yaml
Expand Up @@ -36,7 +36,7 @@ tasks:
# # version is higher than the latest tag (gt,
# # gte, lt, lte, eq, neq)
os: null # (str, list)
python: ">=3.5" # SemVer specifier
python: ">=3.6" # SemVer specifier
twine: true # `twine` is available
up_to_date: true # everything pulled from remote
venv: true # running inside a virtual environment
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/yabs_minimal.yaml
Expand Up @@ -20,7 +20,7 @@ tasks:
branch: master # Current branch must be in this list
can_push: true # Test if 'git push' would/would not succeed
clean: true # Repo must/must not contain modifications
python: ">=3.5" # SemVer specifier
python: ">=3.6" # SemVer specifier
twine: true # `twine` is available
up_to_date: true # everything pulled from remote
venv: true # running inside a virtual environment
Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Expand Up @@ -27,7 +27,6 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Expand Down

0 comments on commit 0dfa732

Please sign in to comment.