Skip to content

Commit

Permalink
RELEASE ticketutil 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dmranck committed Jan 7, 2019
1 parent af74cc6 commit 7ec2b21
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 12 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release History
---------------

1.4.2 (01-07-2019)
++++++++++++++++++

* Still fixing README on PyPI.

1.4.1 (01-07-2019)
++++++++++++++++++

Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ ticketutil
==========

.. image:: https://img.shields.io/badge/python-2.7%2C%203.3%2C%203.4%2C%203.5%2C%203.6-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.4.1
:target: https://pypi.python.org/pypi/ticketutil/1.4.2

.. image:: https://img.shields.io/badge/pypi-v1.4.1-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.4.1
.. image:: https://img.shields.io/badge/pypi-v1.4.2-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.4.2

ticketutil is a Python module that allows you to easily interact with
various ticketing tools using their REST APIs. Currently, the supported
Expand Down
6 changes: 3 additions & 3 deletions read-the-docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ Welcome to ticketutil's documentation!
======================================

.. image:: https://img.shields.io/badge/python-2.7%2C%203.3%2C%203.4%2C%203.5%2C%203.6-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.4.1
:target: https://pypi.python.org/pypi/ticketutil/1.4.2

.. image:: https://img.shields.io/badge/pypi-v1.4.1-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.4.1
.. image:: https://img.shields.io/badge/pypi-v1.4.2-blue.svg
:target: https://pypi.python.org/pypi/ticketutil/1.4.2

ticketutil is a Python module that allows you to easily interact with
various ticketing tools using their REST APIs. Currently, the supported
Expand Down
14 changes: 8 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
#!/usr/bin/env python
"""Setup for ticketutil."""

from os import path
from setuptools import setup

with open('README.rst') as file:
long_description = file.read()
with open('HISTORY.rst') as file:
long_description += '\n{0}'.format(file.read())
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst')) as f:
long_description = f.read()
with open(path.join(this_directory, 'HISTORY.rst')) as f:
long_description += '\n{0}'.format(f.read())

setup(
name='ticketutil',
packages=['ticketutil'],
version='1.4.1',
version='1.4.2',
description='Python ticketing utility supporting JIRA, RT, Redmine, Bugzilla, and ServiceNow',
long_description=long_description,
author='Danny Ranck',
author_email='dmranck@gmail.com',
url='https://github.com/dmranck/ticketutil',
download_url='https://github.com/dmranck/ticketutil/tarball/1.4.1',
download_url='https://github.com/dmranck/ticketutil/tarball/1.4.2',
keywords=['jira', 'bugzilla', 'rt', 'redmine', 'servicenow', 'ticket', 'rest'],
install_requires=['gssapi>=1.2.0', 'requests>=2.6.0', 'requests-kerberos>=0.8.0']
)

0 comments on commit 7ec2b21

Please sign in to comment.