Skip to content

Commit 839b277

Browse files
Add travis and uprev
1 parent 9e5423c commit 839b277

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: python
2+
3+
script:
4+
- ls -hlR
5+
6+
deploy:
7+
- provider: pypi
8+
user: samuelcolvin
9+
password:
10+
secure: JT5xecDyHp/zkc4K0MaOc89n9MtqnUbprIg07XJc4l59dTr6DSUihweDzi+6V8l4j+OWcxER9+ytnztcQIJp+smk4KNmKxNQIa61T2HmRZp7AwFszG7Z32alayllCocrwbOjChjvf7APgxQBFe5wG+f+4mwDgH5+XbY5TEAldLxnN9CERp5ai2+M/zFys3DRXmzrd6DEsf68/7gndnH2EU2mTaUwHT6gijbkr06JR1y4pDIO5Pb229Feb/Cua6KPQ6PDQYTZECSBNcNWMXNJYpRCXstqesPuebECFUnS8mar7M5sVimEC1LvWWt7eup8Hvm3xxcPWurbsAql1WGEWhn5SHOt2jRDYMODk1z+IhhuHKx8xfke/cxe27Jpw+PJ0m125wVgMaq6bPVFTxmnd6j8veqEb0JV85In/SWoGMgt/hfeDi7OBsrRgSPQqYaIvtLdgY7oHZ8RbVvlzXFsinQPjtCR5hjVd6d7JA0SHwG/HqPC2R/91jKR++sCkNmSRunIT9pYVKkBrTY1B63/HPK2P+3kcOsEvutaFURcwQ6PIIPo2dfWLNfRudHLpkg2LLNnigWV6rbP5YY0SRqGQpxicP1lnZp0WRxNolEPBYB/X1bl3aVUMAeIK9Cu1jxffrL1F+nGrbydH+a5RyIugJ/Sgkd46fNuMvrMZqHzxQI=
11+
on:
12+
tags: true

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,17 @@
66
import pypandoc
77
long_description = pypandoc.convert('README.md', 'rst')
88

9+
VERSION = '2.6.0'
10+
911
setup(
1012
name='django-bootstrap3-datetimepicker-2',
1113
packages=['bootstrap3_datetime'],
1214
include_package_data=True,
13-
version='2.5.0',
15+
version=VERSION,
1416
description='Bootstrap3 compatible datetimepicker for Django projects.',
1517
long_description=long_description,
1618
author='Nakahara Kunihiko/Samuel Colvin',
17-
author_email='nakahara.kunihiko@gmail.com/s@muelcolvin.com',
19+
author_email='s@muelcolvin.com',
1820
url='https://github.com/samuelcolvin/django-bootstrap3-datetimepicker',
1921
license='Apache License 2.0',
2022
classifiers=[

0 commit comments

Comments
 (0)