Skip to content
This repository was archived by the owner on Nov 19, 2022. It is now read-only.

Commit 8ca1ade

Browse files
committed
Merge branch 'release/0.1.20'
2 parents d6d0886 + 75ee673 commit 8ca1ade

25 files changed

Lines changed: 481 additions & 99 deletions

.travis.yml

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,35 @@
11
sudo: required
22
services: docker
3-
dist: xenial
3+
dist: bionic
44
group: edge
55
language: python
66
matrix:
77
include:
8-
- python: "2.7"
9-
env: TOXENV=py27
10-
- python: "3.4"
11-
env: TOXENV=py34
128
- python: "3.5"
139
env: TOXENV=py35
1410
- python: "3.6"
1511
env: TOXENV=py36
12+
- python: "3.8"
13+
env: TOXENV=py38
1614
- python: "3.7"
1715
env: TOXENV=py37
16+
- python: "pypy3"
17+
env: TOXENV=pypy3
1818
install:
1919
- pip install -r requirements-dev.txt
2020
script:
2121
- tox -e ${TOXENV}
2222
- |
23-
docker run -v ${PWD}:${PWD} -w ${PWD} \
24-
dockershelf/python:${TRAVIS_PYTHON_VERSION} bash -c \
25-
"python${TRAVIS_PYTHON_VERSION} setup.py install && \
26-
python${TRAVIS_PYTHON_VERSION} -m pipsalabim.cli update"
23+
if [ "${TOXENV}" == "pypy3" ]; then
24+
docker run -v ${PWD}:${PWD} -w ${PWD} \
25+
pypy:3 bash -c \
26+
"pypy3 setup.py install && \
27+
pypy3 -m pipsalabim.cli update"
28+
else
29+
docker run -v ${PWD}:${PWD} -w ${PWD} \
30+
dockershelf/python:${TRAVIS_PYTHON_VERSION} bash -c \
31+
"python${TRAVIS_PYTHON_VERSION} setup.py install && \
32+
python${TRAVIS_PYTHON_VERSION} -m pipsalabim.cli update"
33+
fi
2734
after_success:
2835
- coveralls

AUTHORS.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Authors
55
Development Lead
66
----------------
77

8-
* Luis Alejandro Martínez Faneyth <luis@huntingbears.com.ve>
8+
* Luis Alejandro Martínez Faneyth <luis@collagelabs.org>
99

1010
Contributors
1111
------------

CLA.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Contributor License Agreement Version 1.0
22

3-
Copyright (C) 2016, Pip Sala Bim Developers.
3+
Copyright (C) 2016-2020, Pip Sala Bim Developers.
44

55
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
66

CONTRIBUTING.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Types of Contributions
1515
Report Bugs
1616
~~~~~~~~~~~
1717

18-
Report bugs at https://github.com/LuisAlejandro/pipsalabim/issues.
18+
Report bugs at https://github.com/CollageLabs/pipsalabim/issues.
1919

2020
If you are reporting a bug, please include:
2121

@@ -45,7 +45,7 @@ articles, and such.
4545
Submit Feedback
4646
~~~~~~~~~~~~~~~
4747

48-
The best way to send feedback is to file an issue at https://github.com/LuisAlejandro/pipsalabim/issues.
48+
The best way to send feedback is to file an issue at https://github.com/CollageLabs/pipsalabim/issues.
4949

5050
If you are proposing a feature:
5151

@@ -101,8 +101,8 @@ Before you submit a pull request, check that it meets these guidelines:
101101
2. If the pull request adds functionality, the docs should be updated. Put
102102
your new functionality into a function with a docstring, and add the
103103
feature to the list in README.rst.
104-
3. The pull request should work for Python 2.6, 2.7, 3.3, 3.4 and 3.5, and for PyPy. Check
105-
https://travis-ci.org/LuisAlejandro/pipsalabim/pull_requests
104+
3. The pull request should work for Python 3.5-3.8, and for PyPy3. Check
105+
https://travis-ci.org/CollageLabs/pipsalabim/pull_requests
106106
and make sure that the tests pass for all supported Python versions.
107107

108108
Tips

COPYING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
Copyright (C) 2016, Pip Sala Bim Developers.
2+
Copyright (C) 2016-2020, Pip Sala Bim Developers.
33

44
Please refer to AUTHORS.rst for a complete list of Copyright holders.
55

HISTORY.rst

Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,160 @@ Changelog
22
=========
33

44

5+
0.1.20 (2020-01-18)
6+
-------------------
7+
8+
Changes
9+
~~~~~~~
10+
- Adding python 3.7 support. [Luis Alejandro Martínez Faneyth]
11+
- Removing support for python 2.7 and 3.4. Adding support for python 3.8
12+
and PyPy3. [Luis Alejandro Martínez Faneyth]
13+
- Improving docstrings. [Luis Alejandro Martínez Faneyth]
14+
- Changing branding. [Luis Alejandro Martínez Faneyth]
15+
16+
Other
17+
~~~~~
18+
- Scheduled monthly dependency update for November (#47) [Luis Alejandro
19+
Martínez Faneyth, pyup.io bot]
20+
21+
* Update setuptools from 41.0.1 to 41.6.0
22+
23+
* Update setuptools from 41.0.1 to 41.6.0
24+
25+
* Update pip from 19.1.1 to 19.3.1
26+
27+
* Update flake8 from 3.7.7 to 3.7.9
28+
29+
* Update pydocstyle from 3.0.0 to 4.0.1
30+
31+
* Update virtualenv from 16.6.1 to 16.7.7
32+
33+
* Update coverage from 4.5.3 to 4.5.4
34+
35+
* Update tox from 3.13.1 to 3.14.0
36+
37+
* Update coveralls from 1.8.1 to 1.8.2
38+
- Scheduled monthly dependency update for October (#46) [Luis Alejandro
39+
Martínez Faneyth, pyup.io bot]
40+
41+
* Update setuptools from 41.0.1 to 41.2.0
42+
43+
* Update setuptools from 41.0.1 to 41.2.0
44+
45+
* Update pip from 19.1.1 to 19.2.3
46+
47+
* Update flake8 from 3.7.7 to 3.7.8
48+
49+
* Update pydocstyle from 3.0.0 to 4.0.1
50+
51+
* Update virtualenv from 16.6.1 to 16.7.5
52+
53+
* Update coverage from 4.5.3 to 4.5.4
54+
55+
* Update tox from 3.13.1 to 3.14.0
56+
57+
* Update coveralls from 1.8.1 to 1.8.2
58+
- Scheduled monthly dependency update for September (#45) [Luis
59+
Alejandro Martínez Faneyth, pyup.io bot]
60+
61+
* Update setuptools from 41.0.1 to 41.2.0
62+
63+
* Update setuptools from 41.0.1 to 41.2.0
64+
65+
* Update pip from 19.1.1 to 19.2.3
66+
67+
* Update flake8 from 3.7.7 to 3.7.8
68+
69+
* Update pydocstyle from 3.0.0 to 4.0.1
70+
71+
* Update virtualenv from 16.6.1 to 16.7.4
72+
73+
* Update coverage from 4.5.3 to 4.5.4
74+
75+
* Update tox from 3.13.1 to 3.13.2
76+
77+
* Update coveralls from 1.8.1 to 1.8.2
78+
- Scheduled monthly dependency update for August (#44) [pyup.io bot]
79+
80+
* Update pip from 19.1.1 to 19.2.1
81+
82+
* Update flake8 from 3.7.7 to 3.7.8
83+
84+
* Update pydocstyle from 3.0.0 to 4.0.0
85+
86+
* Update virtualenv from 16.6.1 to 16.7.2
87+
88+
* Update coverage from 4.5.3 to 4.5.4
89+
90+
* Update tox from 3.13.1 to 3.13.2
91+
92+
* Update coveralls from 1.8.1 to 1.8.2
93+
- Scheduled monthly dependency update for July (#43) [pyup.io bot]
94+
95+
* Update setuptools from 40.8.0 to 41.0.1
96+
97+
* Update setuptools from 40.8.0 to 41.0.1
98+
99+
* Update pip from 19.0.3 to 19.1.1
100+
101+
* Update virtualenv from 16.4.3 to 16.6.1
102+
103+
* Update coverage from 4.5.2 to 4.5.3
104+
105+
* Update tox from 3.7.0 to 3.13.1
106+
107+
* Update coveralls from 1.6.0 to 1.8.1
108+
- Scheduled monthly dependency update for March (#39) [pyup.io bot]
109+
110+
* Update setuptools from 40.7.2 to 40.8.0
111+
112+
* Update setuptools from 40.7.2 to 40.8.0
113+
114+
* Update pip from 19.0.1 to 19.0.3
115+
116+
* Update flake8 from 3.7.4 to 3.7.7
117+
118+
* Update virtualenv from 16.3.0 to 16.4.3
119+
120+
* Update coveralls from 1.5.1 to 1.6.0
121+
- Scheduled monthly dependency update for February (#38) [pyup.io bot]
122+
123+
* Update setuptools from 40.6.2 to 40.7.2
124+
125+
* Update setuptools from 40.6.2 to 40.7.2
126+
127+
* Update pip from 18.1 to 19.0.1
128+
129+
* Update flake8 from 3.6.0 to 3.7.4
130+
131+
* Update virtualenv from 16.1.0 to 16.3.0
132+
133+
* Update gitchangelog from 3.0.3 to 3.0.4
134+
135+
* Update tox from 3.5.3 to 3.7.0
136+
- Scheduled monthly dependency update for December (#36) [pyup.io bot]
137+
138+
* Update setuptools from 40.0.0 to 40.6.2
139+
140+
* Update setuptools from 40.0.0 to 40.6.2
141+
142+
* Update pip from 18.0 to 18.1
143+
144+
* Update flake8 from 3.5.0 to 3.6.0
145+
146+
* Update wheel from 0.31.1 to 0.32.3
147+
148+
* Update tox from 3.1.2 to 3.5.3
149+
150+
* Update pydocstyle from 2.1.1 to 3.0.0
151+
152+
* Update virtualenv from 16.0.0 to 16.1.0
153+
154+
* Update coverage from 4.5.1 to 4.5.2
155+
156+
* Update coveralls from 1.3.0 to 1.5.1
157+
158+
5159
0.1.19 (2018-12-12)
6160
-------------------
7161

README.rst

Lines changed: 23 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. image:: https://gitcdn.xyz/repo/LuisAlejandro/pipsalabim/master/docs/_static/banner.svg
1+
.. image:: https://gitcdn.xyz/repo/CollageLabs/pipsalabim/master/docs/_static/banner.svg
22

33
..
44
@@ -9,39 +9,39 @@
99
:target: https://pypi.python.org/pypi/pipsalabim
1010
:alt: PyPI Package
1111

12-
.. image:: https://img.shields.io/travis/LuisAlejandro/pipsalabim.svg
13-
:target: https://travis-ci.org/LuisAlejandro/pipsalabim
12+
.. image:: https://img.shields.io/travis/CollageLabs/pipsalabim.svg
13+
:target: https://travis-ci.org/CollageLabs/pipsalabim
1414
:alt: Travis CI
1515

16-
.. image:: https://coveralls.io/repos/github/LuisAlejandro/pipsalabim/badge.svg?branch=master
17-
:target: https://coveralls.io/github/LuisAlejandro/pipsalabim?branch=master
16+
.. image:: https://coveralls.io/repos/github/CollageLabs/pipsalabim/badge.svg?branch=develop
17+
:target: https://coveralls.io/github/CollageLabs/pipsalabim?branch=develop
1818
:alt: Coveralls
1919

20-
.. image:: https://codeclimate.com/github/LuisAlejandro/pipsalabim/badges/gpa.svg
21-
:target: https://codeclimate.com/github/LuisAlejandro/pipsalabim
20+
.. image:: https://codeclimate.com/github/CollageLabs/pipsalabim/badges/gpa.svg
21+
:target: https://codeclimate.com/github/CollageLabs/pipsalabim
2222
:alt: Code Climate
2323

24-
.. image:: https://pyup.io/repos/github/LuisAlejandro/pipsalabim/shield.svg
25-
:target: https://pyup.io/repos/github/LuisAlejandro/pipsalabim/
24+
.. image:: https://pyup.io/repos/github/CollageLabs/pipsalabim/shield.svg
25+
:target: https://pyup.io/repos/github/CollageLabs/pipsalabim/
2626
:alt: Updates
2727

2828
.. image:: https://readthedocs.org/projects/pipsalabim/badge/?version=latest
2929
:target: https://readthedocs.org/projects/pipsalabim/?badge=latest
3030
:alt: Read The Docs
3131

32-
.. image:: https://cla-assistant.io/readme/badge/LuisAlejandro/pipsalabim
33-
:target: https://cla-assistant.io/LuisAlejandro/pipsalabim
32+
.. image:: https://cla-assistant.io/readme/badge/CollageLabs/pipsalabim
33+
:target: https://cla-assistant.io/CollageLabs/pipsalabim
3434
:alt: Contributor License Agreement
3535

36-
.. image:: https://badges.gitter.im/LuisAlejandro/pipsalabim.svg
37-
:target: https://gitter.im/LuisAlejandro/pipsalabim
36+
.. image:: https://badges.gitter.im/CollageLabs/pipsalabim.svg
37+
:target: https://gitter.im/CollageLabs/pipsalabim
3838
:alt: Gitter Chat
3939

4040
|
4141
|
4242
4343
.. _full documentation: https://pipsalabim.readthedocs.org
44-
.. _PyPIContents: https://github.com/LuisAlejandro/pypicontents
44+
.. _PyPIContents: https://github.com/CollageLabs/pypicontents
4545

4646
**Pip Sala Bim** will tell you which packages you need to install to satisfy the dependencies of
4747
your project. It uses a simple *AST visitor* [#]_ for detecting imports and `PyPIContents`_ to
@@ -65,7 +65,7 @@ pip to install the stable version::
6565
If you want to install the development version (not recomended), you can install
6666
directlty from GitHub like this::
6767

68-
$ pip install --upgrade https://github.com/LuisAlejandro/pipsalabim/archive/master.tar.gz
68+
$ pip install --upgrade https://github.com/CollageLabs/pipsalabim/archive/master.tar.gz
6969

7070
Usage
7171
-----
@@ -87,7 +87,7 @@ start guessing your dependencies::
8787
Getting help
8888
============
8989

90-
.. _Gitter Chat: https://gitter.im/LuisAlejandro/pipsalabim
90+
.. _Gitter Chat: https://gitter.im/CollageLabs/pipsalabim
9191
.. _StackOverflow: http://stackoverflow.com/questions/ask
9292

9393
If you have any doubts or problems, suscribe to our `Gitter Chat`_ and ask for help. You can also
@@ -122,29 +122,18 @@ Released under a `GPL-3 License`_ (read COPYING.rst_ for license details).
122122
Made with :heart: and :hamburger:
123123
=================================
124124

125-
.. image:: http://huntingbears.com.ve/static/img/site/banner.svg
125+
.. image:: https://rawcdn.githack.com/CollageLabs/pipsalabim/b00c6704253b9d05447b621f728869a2229d5322/docs/_static/promo-open-source.svg
126126

127-
.. _Patreon: https://www.patreon.com/luisalejandro
128-
.. _Flattr: https://flattr.com/profile/luisalejandro
129-
.. _PayPal: https://www.paypal.me/martinezfaneyth
130-
.. _LuisAlejandroTwitter: https://twitter.com/LuisAlejandro
131-
.. _LuisAlejandroGitHub: https://github.com/LuisAlejandro
132-
.. _huntingbears.com.ve: http://huntingbears.com.ve
127+
.. _CollageLabsTwitter: https://twitter.com/CollageLabs
128+
.. _CollageLabsGitHub: https://github.com/CollageLabs
129+
.. _collagelabs.org: http://collagelabs.org
133130

134131
|
135132
136-
My name is Luis (`@LuisAlejandro`__) and I'm a Free and
137-
Open-Source Software developer living in Maracay, Venezuela.
133+
Web collagelabs.org_ · GitHub `@CollageLabs`__ · Twitter `@CollageLabs`__
138134

139-
__ LuisAlejandroTwitter_
140-
141-
If you like what I do, please support me on Patreon_, Flattr_, or donate via PayPal_,
142-
so that I can continue doing what I love.
143-
144-
Blog huntingbears.com.ve_ · GitHub `@LuisAlejandro`__ · Twitter `@LuisAlejandro`__
145-
146-
__ LuisAlejandroGitHub_
147-
__ LuisAlejandroTwitter_
135+
__ CollageLabsGitHub_
136+
__ CollageLabsTwitter_
148137

149138
|
150139
|

0 commit comments

Comments
 (0)