kopia lustrzana https://gitlab.com/jaywink/federation
Merge branch 'python36' into 'master'
Drop support for Python <= 3.5, add tox and Gitlab CI See merge request jaywink/federation!128merge-requests/129/head
commit
065c8594b6
|
@ -3,3 +3,4 @@ omit =
|
||||||
setup.py
|
setup.py
|
||||||
federation/__init__.py
|
federation/__init__.py
|
||||||
*/tests/*
|
*/tests/*
|
||||||
|
.tox/*
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
# This file is a template, and might need editing before it works on your project.
|
||||||
|
# Official language image. Look for the different tagged releases at:
|
||||||
|
# https://hub.docker.com/r/library/python/tags/
|
||||||
|
image: python:3.6
|
||||||
|
|
||||||
|
# Change pip's cache directory to be inside the project directory since we can
|
||||||
|
# only cache local items.
|
||||||
|
variables:
|
||||||
|
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache"
|
||||||
|
|
||||||
|
# Pip's cache doesn't store the python packages
|
||||||
|
# https://pip.pypa.io/en/stable/reference/pip_install/#caching
|
||||||
|
#
|
||||||
|
# If you want to also cache the installed packages, you have to install
|
||||||
|
# them in a virtualenv and cache it as well.
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- .cache/pip
|
||||||
|
- venv/
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- python -V
|
||||||
|
- pip install virtualenv
|
||||||
|
- virtualenv venv
|
||||||
|
- source venv/bin/activate
|
||||||
|
|
||||||
|
test:
|
||||||
|
script:
|
||||||
|
- pip install tox
|
||||||
|
- tox
|
|
@ -1,5 +1,11 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.17.0-dev] - unreleased
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* **Backwards incompatible.** Lowest compatible Python version is now 3.6.
|
||||||
|
|
||||||
## [0.16.0] - 2018-07-23
|
## [0.16.0] - 2018-07-23
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -10,6 +10,7 @@ codecov
|
||||||
coverage
|
coverage
|
||||||
pytest-cov
|
pytest-cov
|
||||||
pytest-warnings
|
pytest-warnings
|
||||||
|
tox
|
||||||
|
|
||||||
# Docs
|
# Docs
|
||||||
sphinx
|
sphinx
|
||||||
|
|
|
@ -10,7 +10,7 @@ Help is more than welcome to extend this library. Please see the following resou
|
||||||
Environment setup
|
Environment setup
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
Once you have your (Python 3.3+) virtualenv set up, install the development requirements::
|
Once you have your (Python 3.6+) virtualenv set up, install the development requirements::
|
||||||
|
|
||||||
pip install -r dev-requirements.txt
|
pip install -r dev-requirements.txt
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.16.0"
|
__version__ = "0.17.0-dev"
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -45,8 +45,6 @@ setup(
|
||||||
'License :: OSI Approved :: BSD License',
|
'License :: OSI Approved :: BSD License',
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Programming Language :: Python :: 3 :: Only',
|
'Programming Language :: Python :: 3 :: Only',
|
||||||
'Programming Language :: Python :: 3.4',
|
|
||||||
'Programming Language :: Python :: 3.5',
|
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
'Programming Language :: Python :: Implementation :: CPython',
|
'Programming Language :: Python :: Implementation :: CPython',
|
||||||
'Topic :: Communications',
|
'Topic :: Communications',
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
# tox (https://tox.readthedocs.io/) is a tool for running tests
|
||||||
|
# in multiple virtualenvs. This configuration file will run the
|
||||||
|
# test suite on all supported python versions. To use it, "pip install tox"
|
||||||
|
# and then run "tox" from this directory.
|
||||||
|
|
||||||
|
[tox]
|
||||||
|
envlist = py36
|
||||||
|
|
||||||
|
[testenv]
|
||||||
|
usedevelop = True
|
||||||
|
|
||||||
|
deps = -rdev-requirements.txt
|
||||||
|
|
||||||
|
commands =
|
||||||
|
pip freeze
|
||||||
|
pytest --cov=./
|
||||||
|
#codecov
|
Ładowanie…
Reference in New Issue