зеркало из https://github.com/mozilla/pytest-fxa.git
Add support for Python 3.7 and update all dependencies
This commit is contained in:
Родитель
4d786a053c
Коммит
266bc70e0c
12
.travis.yml
12
.travis.yml
|
@ -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:
|
||||
|
|
9
Pipfile
9
Pipfile
|
@ -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
|
||||
------------
|
||||
|
|
1
setup.py
1
setup.py
|
@ -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'])
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,5 +1,5 @@
|
|||
[tox]
|
||||
envlist = py{27,36,py,py3}, flake8
|
||||
envlist = py{27,36,37,py,py3}, flake8
|
||||
|
||||
[testenv]
|
||||
deps = -rpipenv.txt
|
||||
|
|
Загрузка…
Ссылка в новой задаче