nficano commited on
Commit
3c3711b
·
1 Parent(s): 078a56c

pipenv ergm

Browse files
Files changed (3) hide show
  1. .travis.yml +3 -2
  2. Pipfile +1 -1
  3. setup.py +0 -1
.travis.yml CHANGED
@@ -4,17 +4,18 @@ cache:
4
  - pip
5
  python:
6
  - "2.7"
7
- - "3.3"
8
  - "3.4"
9
  - "3.5"
10
  - "3.6"
11
  - "3.6-dev"
12
  - "3.7-dev"
13
- - "nightly"
14
  install:
15
  - pip install --upgrade pipenv
16
  - pipenv install --dev --ignore-pipfile
17
  before_script: flake8
 
 
 
18
  script: pipenv run pytest --cov-report term-missing --cov=pytube
19
  sudo: required
20
  after_success:
 
4
  - pip
5
  python:
6
  - "2.7"
 
7
  - "3.4"
8
  - "3.5"
9
  - "3.6"
10
  - "3.6-dev"
11
  - "3.7-dev"
 
12
  install:
13
  - pip install --upgrade pipenv
14
  - pipenv install --dev --ignore-pipfile
15
  before_script: flake8
16
+ before_install:
17
+ - sudo apt-get install -y python-pip
18
+ - sudo apt-get install -y libpython-dev
19
  script: pipenv run pytest --cov-report term-missing --cov=pytube
20
  sudo: required
21
  after_success:
Pipfile CHANGED
@@ -16,7 +16,7 @@ coveralls = "*"
16
  "flake8" = "*"
17
  mock = "*"
18
  pre-commit = "*"
19
- pytest = "3.2.5"
20
  pytest-cov = "*"
21
  pytest-mock = "*"
22
  sphinx = "*"
 
16
  "flake8" = "*"
17
  mock = "*"
18
  pre-commit = "*"
19
+ pytest = "*"
20
  pytest-cov = "*"
21
  pytest-mock = "*"
22
  sphinx = "*"
setup.py CHANGED
@@ -36,7 +36,6 @@ setup(
36
  'Operating System :: POSIX',
37
  'Operating System :: Unix',
38
  'Programming Language :: Python :: 2.7',
39
- 'Programming Language :: Python :: 3.3',
40
  'Programming Language :: Python :: 3.4',
41
  'Programming Language :: Python :: 3.5',
42
  'Programming Language :: Python :: 3.6',
 
36
  'Operating System :: POSIX',
37
  'Operating System :: Unix',
38
  'Programming Language :: Python :: 2.7',
 
39
  'Programming Language :: Python :: 3.4',
40
  'Programming Language :: Python :: 3.5',
41
  'Programming Language :: Python :: 3.6',