Skip to content

Commit

Permalink
Release 0.2.2 (#12)
Browse files Browse the repository at this point in the history
* Complete 'setup.py' script

* Bump version: 0.2.1 → 0.2.2-alpha

* Bump version: 0.2.2-alpha → 0.2.2
  • Loading branch information
lycantropos committed Mar 13, 2020
1 parent ef78049 commit c34dc42
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.1
current_version = 0.2.2
commit = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>.*))?
serialize =
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.cpython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
args:
- PYTHON_IMAGE=${CPYTHON_IMAGE_NAME}
- PYTHON_IMAGE_VERSION=${CPYTHON_IMAGE_VERSION}
image: lycantropos/reprit-cpython:0.2.1
image: lycantropos/reprit-cpython:0.2.2
volumes:
- ./reprit/:/opt/reprit/reprit/
- ./tests/:/opt/reprit/tests/
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.pypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
args:
- PYTHON_IMAGE=${PYPY_IMAGE_NAME}
- PYTHON_IMAGE_VERSION=${PYPY_IMAGE_VERSION}
image: lycantropos/reprit-pypy:0.2.1
image: lycantropos/reprit-pypy:0.2.2
volumes:
- ./reprit/:/opt/reprit/reprit/
- ./tests/:/opt/reprit/tests/
Expand Down
2 changes: 1 addition & 1 deletion reprit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Auto __repr__ method generation."""

__version__ = '0.2.1'
__version__ = '0.2.2'
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

project_base_url = 'https://github.com/lycantropos/reprit/'

tests_require = Path('requirements-tests.txt').read_text()

setup(name=reprit.__name__,
packages=find_packages(exclude=('tests', 'tests.*')),
version=reprit.__version__,
Expand All @@ -32,5 +30,4 @@
author_email='azatibrakov@gmail.com',
url=project_base_url,
download_url=project_base_url + 'archive/master.zip',
python_requires='>=3.5.3',
tests_require=tests_require)
python_requires='>=3.5.3')

0 comments on commit c34dc42

Please sign in to comment.