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

set the minimum supported version at py35 #3547

Merged
merged 6 commits into from
Dec 23, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 2 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,24 @@ sudo: false

matrix:
include:
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: pypy3
env: TOXENV=pypy3
- python: 3.6
env: TOXENV=py36-cover,coverage
- python: 3.5
- python: 3.6
env: TOXENV=docs
- python: 3.6
env: TOXENV=lint
- python: 3.7
env: TOXENV=py37
dist: xenial
sudo: true
- python: 3.8-dev
- python: 3.8
env: TOXENV=py38
dist: xenial
sudo: true
allow_failures:
- env: TOXENV=py38

install:
- travis_retry pip install tox
Expand Down
5 changes: 2 additions & 3 deletions HACKING.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ In order to add a feature to Pyramid:
- The feature must be documented in both the API and narrative documentation
(in `docs/`).

- The feature must work fully on the following CPython versions: 3.4, 3.5, 3.6,
and 3.7 on both UNIX and Windows.
- The feature must work fully on the following CPython versions: 3.6, 3.7, and 3.8 on both UNIX and Windows.

- The feature must work on the latest version of PyPy3.

Expand Down Expand Up @@ -67,7 +66,7 @@ Running Tests

This command will run tests on the latest version of Python 3 with coverage.

$ tox -e py3-cover,coverage
$ tox -e py36-cover,coverage

- To run individual tests (i.e., during development), you can use `nosetests`
syntax as follows, where `$VENV` is an environment variable set to the path
Expand Down
10 changes: 4 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
environment:
matrix:
- PYTHON: "C:\\Python37"
TOXENV: "py37"
- PYTHON: "C:\\Python36"
TOXENV: "py36"
- PYTHON: "C:\\Python35"
TOXENV: "py35"
- PYTHON: "C:\\Python34"
TOXENV: "py34"
- PYTHON: "C:\\Python37"
TOXENV: "py37"
- PYTHON: "C:\\Python38"
TOXENV: "py38"

cache:
- '%LOCALAPPDATA%\pip\Cache'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def readfile(name):
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
python_requires='>=3.4',
python_requires='>=3.6',
mmerickel marked this conversation as resolved.
Show resolved Hide resolved
install_requires=install_requires,
extras_require={'testing': testing_extras, 'docs': docs_extras},
tests_require=tests_require,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
lint,
py34,py35,py36,py37,pypy3,
py36,py37,pypy3,
mmerickel marked this conversation as resolved.
Show resolved Hide resolved
docs,py36-cover,coverage,

[testenv]
Expand Down