Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure bumpversion #10

Merged
merged 12 commits into from Apr 13, 2019
9 changes: 9 additions & 0 deletions .bumpversion.cfg
@@ -0,0 +1,9 @@
[bumpversion]
current_version = 0.0.1
commit = False
tag = False

[bumpversion:file:ftoolz/__init__.py]
search = __version__ = {current_version}
replace = {new_version}

15 changes: 14 additions & 1 deletion .travis.yml
Expand Up @@ -2,8 +2,8 @@ sudo: required
dist: xenial
language: python
python:
- "3.6"
- "3.7"
- "3.6"

install:
- make install
Expand All @@ -14,3 +14,16 @@ script:

after_success:
- coveralls

deploy:
provider: pypi
user: blindspot-ai
password:
secure: "p324XIUL4vrCoDuTRjt6uyHztciwatmJktsNljjDVKceM1BNGX1RAc8EhXNSpgLqBfETAqVujzVeeg1wPMMcfHypBQGjNoJoc9WQaGms5khqqqYGvJtU1FSjteBWIKDMFQtL5t2wjSnGw8GsOfsEz+whcbaFdEAknrX+W1pPunFadboesiV0PFToVwuLfn266uGOGDFGvzp3QtKFzG0eWlEj4a3nHDOBgMJddIzYOQ689Kr9qiBbsn1m9vcfUZ/G7xkEEtp2J0R8Ug8B3hkeItSHShT2OJdkx9cCdBkhOmniUsDTjUzBw4P1DPB1dtuf2p0QjNq8jW42sx6CZpxX5+AyFwgh3K0UYArcYKfvmSXYMVpOUavtI5rczySCiSfC708gmKnYatBQgpfa2tg+07re5GK7DiKAtOOYGNl7yQHWtPAOGd1JcI0p4qc27WKJyrc56SQNnIw5Sa1R9PUkxsd2UHXguCxN/UaOYRoH7Se/VqhSD6s4p2Jt2wI+dRNs8LW50KotdjbutHCoEwsw5R0Qt5yX7Caq965EZgauNrsqHidZcc9mJau+E6qVShbKCrDLhgRc+ALtaEPRQwL/C3ZanuZBX8LJweA7QW+s0G+mq85U/5ixqrnCfZmZaav+B5OUeXxckJxlkpZWWFPe/Vggh3t4Tw9m7jp7A2AQisg="
distributions: sdist
skip_cleanup: true
on:
branch: master
tags: true
python: 3.6
skip_existing: true
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -45,7 +45,7 @@ setup: clean
setup-dev: clean
virtualenv -p python3 venv
./venv/bin/pip install -U pip
./venv/bin/pip install -U setuptools
./venv/bin/pip install -U setuptools twine bumpversion
./venv/bin/python setup.py develop

install: clean
Expand Down
4 changes: 3 additions & 1 deletion README.md
@@ -1,5 +1,7 @@
# ftoolz
[![Build Status](https://travis-ci.com/blindspot-ai/ftoolz.svg?branch=master)](https://travis-ci.com/blindspot-ai/ftoolz) [![Coverage Status](https://coveralls.io/repos/github/blindspot-ai/ftoolz/badge.svg?branch=master)](https://coveralls.io/github/blindspot-ai/ftoolz?branch=master) [![PyPI version](https://badge.fury.io/py/ftoolz.svg)](https://badge.fury.io/py/ftoolz)
[![Build Status](https://travis-ci.com/blindspot-ai/ftoolz.svg?branch=master)](https://travis-ci.com/blindspot-ai/ftoolz) [![Coverage Status](https://coveralls.io/repos/github/blindspot-ai/ftoolz/badge.svg?branch=master)](https://coveralls.io/github/blindspot-ai/ftoolz?branch=master) [![PyPI version](https://badge.fury.io/py/ftoolz.svg)](https://badge.fury.io/py/ftoolz) [![PyPI status](https://img.shields.io/pypi/status/ftoolz.svg)](https://pypi.python.org/pypi/ftoolz/)

[![PyPI pyversions](https://img.shields.io/pypi/pyversions/ftoolz.svg)](https://pypi.python.org/pypi/ftoolz/)

Collection of higher-order and utility functions built on top of `cytoolz`.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -37,7 +37,7 @@ def has_ext_modules(self) -> bool:
long_description=(open('README.md').read() if exists('README.md') else ''),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
Expand Down