Browse Source

Bump version to Python 3.7 (#121)

* bump version

* enable 3.7 in travis
pull/120/head
ZX 6 years ago
committed by Robert Zajac
parent
commit
732a15ec93
  1. 7
      .travis.yml
  2. 4
      README.md
  3. 2
      requirements_dev.txt
  4. 2
      setup.py

7
.travis.yml

@ -1,7 +1,10 @@
language: python language: python
python: matrix:
- "3.6" include:
- python: 3.7
dist: xenial
sudo: true
install: install:
- pip install --upgrade pip - pip install --upgrade pip

4
README.md

@ -16,10 +16,10 @@ The py-libp2p team consists of:
## Development ## Development
py-libp2p requires Python 3.6 and the best way to guarantee a clean Python 3.6 environment is with [`virtualenv`](https://virtualenv.pypa.io/en/stable/) py-libp2p requires Python 3.7 and the best way to guarantee a clean Python 3.7 environment is with [`virtualenv`](https://virtualenv.pypa.io/en/stable/)
```sh ```sh
virtualenv -p python3.6 venv virtualenv -p python3.7 venv
. venv/bin/activate . venv/bin/activate
pip3 install -r requirements_dev.txt pip3 install -r requirements_dev.txt
python setup.py develop python setup.py develop

2
requirements_dev.txt

@ -1,4 +1,4 @@
pytest>=3.6 pytest>=3.7
codecov codecov
pytest-cov pytest-cov
pytest-asyncio pytest-asyncio

2
setup.py

@ -5,7 +5,7 @@ classifiers = [
( (
"Programming Language :: Python :: %s" % version "Programming Language :: Python :: %s" % version
) )
for version in "3.5 3.6".split() for version in ["3.7"]
] ]

Loading…
Cancel
Save