Drop py3.5, add py3.7
This commit is contained in:
parent
03f00d3fbe
commit
caf9050a19
|
@ -39,27 +39,27 @@ jobs:
|
|||
doctest:
|
||||
<<: *common
|
||||
docker:
|
||||
- image: circleci/python:3.5
|
||||
- image: circleci/python:3.6
|
||||
environment:
|
||||
TOXENV: doctest
|
||||
lint:
|
||||
<<: *common
|
||||
docker:
|
||||
- image: circleci/python:3.5
|
||||
- image: circleci/python:3.6
|
||||
environment:
|
||||
TOXENV: lint
|
||||
py35-core:
|
||||
<<: *common
|
||||
docker:
|
||||
- image: circleci/python:3.5
|
||||
environment:
|
||||
TOXENV: py35-core
|
||||
py36-core:
|
||||
<<: *common
|
||||
docker:
|
||||
- image: circleci/python:3.6
|
||||
environment:
|
||||
TOXENV: py36-core
|
||||
py37-core:
|
||||
<<: *common
|
||||
docker:
|
||||
- image: circleci/python:3.7
|
||||
environment:
|
||||
TOXENV: py37-core
|
||||
pypy3-core:
|
||||
<<: *common
|
||||
docker:
|
||||
|
@ -72,6 +72,6 @@ workflows:
|
|||
jobs:
|
||||
- doctest
|
||||
- lint
|
||||
- py35-core
|
||||
- py36-core
|
||||
- py37-core
|
||||
- pypy3-core
|
||||
|
|
24
.travis.yml
24
.travis.yml
|
@ -4,23 +4,23 @@ dist: trusty
|
|||
matrix:
|
||||
include:
|
||||
#
|
||||
# Python 3.5 testing
|
||||
#
|
||||
# lint
|
||||
- python: "3.5"
|
||||
env: TOX_POSARGS="-e lint"
|
||||
# doctest
|
||||
- python: "3.5"
|
||||
env: TOX_POSARGS="-e doctest"
|
||||
# core
|
||||
- python: "3.5"
|
||||
env: TOX_POSARGS="-e py35-core"
|
||||
#
|
||||
# Python 3.6 testing
|
||||
#
|
||||
# core
|
||||
- python: "3.6"
|
||||
env: TOX_POSARGS="-e py36-core"
|
||||
# lint
|
||||
- python: "3.6"
|
||||
env: TOX_POSARGS="-e lint"
|
||||
# doctest
|
||||
- python: "3.6"
|
||||
env: TOX_POSARGS="-e doctest"
|
||||
#
|
||||
# Python 3.7 testing
|
||||
#
|
||||
# core
|
||||
- python: "3.7"
|
||||
env: TOX_POSARGS="-e py37-core"
|
||||
#
|
||||
# pypy3 testing
|
||||
#
|
||||
|
|
|
@ -273,7 +273,7 @@ texinfo_documents = [
|
|||
# -- Intersphinx configuration ------------------------------------------------
|
||||
|
||||
intersphinx_mapping = {
|
||||
'python': ('https://docs.python.org/3.5', None),
|
||||
'python': ('https://docs.python.org/3.6', None),
|
||||
}
|
||||
|
||||
# -- Doctest configuration ----------------------------------------
|
||||
|
|
4
setup.py
4
setup.py
|
@ -49,7 +49,7 @@ setup(
|
|||
"eth-utils>=1,<2",
|
||||
],
|
||||
setup_requires=['setuptools-markdown'],
|
||||
python_requires='>=3.5, <4',
|
||||
python_requires='>=3.6, <4',
|
||||
extras_require=extras_require,
|
||||
py_modules=['<MODULE_NAME>'],
|
||||
license="MIT",
|
||||
|
@ -62,8 +62,8 @@ setup(
|
|||
'License :: OSI Approved :: MIT License',
|
||||
'Natural Language :: English',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: Implementation :: PyPy',
|
||||
],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user