Add support for Python 3.7 and update all dependencies

This commit is contained in:
Dave Hunt 2018-08-29 09:49:00 +01:00
Родитель 4d786a053c
Коммит 266bc70e0c
5 изменённых файлов: 15 добавлений и 11 удалений

Просмотреть файл

@ -2,18 +2,26 @@ language: python
jobs:
include:
- stage:
python: 3.6
python: 3.7
dist: xenial
sudo: required
env: TOXENV=flake8
- stage:
python: 2.7
- stage:
python: 3.6
- stage:
python: 3.7
dist: xenial
sudo: required
- stage:
python: pypy
- stage:
python: pypy3
- stage: deploy
python: 3.6
python: 3.7
dist: xenial
sudo: required
install: skip
script: skip
deploy:

Просмотреть файл

@ -1,18 +1,13 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
pyfxa = "==0.6.0"
[dev-packages]
flake8 = "==3.5.0"
flake8-isort = "==2.5"
pytest = "==3.6.2"
pytest-mock = "*"
pytest = "==3.7.3"
pytest-mock = "==1.10.0"

Просмотреть файл

@ -28,7 +28,7 @@ Requirements
You will need the following prerequisites in order to use pytest-fxa:
- Python 2.7, 3.6, PyPy, or PyPy3
- Python 2.7, 3.6, 3.7, PyPy, or PyPy3
Installation
------------

Просмотреть файл

@ -31,5 +31,6 @@ setup(name='pytest-fxa',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'])

Просмотреть файл

@ -1,5 +1,5 @@
[tox]
envlist = py{27,36,py,py3}, flake8
envlist = py{27,36,37,py,py3}, flake8
[testenv]
deps = -rpipenv.txt