Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
prwater committed Oct 26, 2020
1 parent cc7ee82 commit f4becab
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
9 changes: 1 addition & 8 deletions .scrutinizer.yml
Expand Up @@ -2,17 +2,10 @@ filter:
excluded_paths:
- test/*

before_commands:
- sudo pip3 install cleo==0.6.8
- sudo pip3 install coverage
- sudo pip3 install PyStratum-Backend

build:
dependencies:
before:
- pip3 install cleo==0.6.8
- pip3 install coverage
- pip3 install PyStratum-Backend
- pip install -r requirements.txt

nodes:
analysis:
Expand Down
4 changes: 1 addition & 3 deletions .travis.yml
Expand Up @@ -4,9 +4,7 @@ python:
- '3.8'

install:
- pip install cleo==0.6.8
- pip install coverage
- pip install PyStratum-Backend
- pip install -r requirements.txt

script:
- python -m unittest discover -s test -p *Test.py
6 changes: 6 additions & 0 deletions requirements.txt
@@ -0,0 +1,6 @@
# Must be aligned with setup.py.
cleo==0.6.8
PyStratum-Backend<2, >=1.0.2

# For development only.
coverage<6, >=5.3
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -42,7 +42,8 @@

packages=find_packages(exclude=['build', 'test']),

install_requires=['cleo==0.6.8'],
install_requires=['cleo==0.6.8',
'PyStratum-Backend<2, >=1.0.2'],

entry_points={
'console_scripts': [
Expand Down

0 comments on commit f4becab

Please sign in to comment.