Skip to content

Commit

Permalink
gitlab config
Browse files Browse the repository at this point in the history
Bump version: 1.4.0 → 1.4.1
  • Loading branch information
rowan08 committed Apr 8, 2019
1 parent cd67f22 commit 091025a
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[bumpversion]
current_version = 1.4.1
commit = True
tag = True

26 changes: 26 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
image: upress/gitlab-base:23

services:
- docker:dind

variables:
DOCKER_HOST: tcp://localhost:2375
DOCKER_DRIVER: overlay

stages:
- 📦 pypi
- flake

build-push:
stage: 📦 pypi
script:
- python3 setup.py sdist
- twine upload --repository-url https://pkg.ubiquity.press/simple/ -u $PKG_UBIQUITY_USER -p $PKG_UBIQUITY_PW dist/*
only:
- tags

flake:
stage: flake
script:
- flake8 wikipedia
allow_failure: true
2 changes: 1 addition & 1 deletion wikipedia/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .wikipedia import *
from .exceptions import *

__version__ = (1, 4, 0)
__version__ = (1, 4, 1)

0 comments on commit 091025a

Please sign in to comment.