Skip to content

Commit c7270ca

Browse files
Jamimcarlosalberto
authored andcommitted
Fix 1.1.0 release (#43)
These changes: - bump package version to 1.1.0 - strip the version string in setup.py in order to avoid a packaging issue https://travis-ci.org/opentracing-contrib/python-flask/jobs/600396363#L315 pypa/setuptools#1390 - declare support for Python 3.8 https://discuss.python.org/t/python-3-8-0-is-now-available/2478 - update .travis.yml - add long_description_content_type to setup.py
1 parent dbb9b5d commit c7270ca

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ python:
55
- '3.5'
66
- '3.6'
77
- '3.7'
8-
- '3.8-dev'
8+
- '3.8'
99
- 'nightly'
1010
- 'pypy'
1111
- 'pypy3.5'
@@ -27,7 +27,6 @@ matrix:
2727
install: skip
2828
script: skip
2929
allow_failures:
30-
- python: '3.8-dev'
3130
- python: 'nightly'
3231

3332
install:

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
1.1.0

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
This extension provides simple integration of OpenTracing in Flask applications.
88
'''
9-
version = open('VERSION').read()
9+
version = open('VERSION').read().strip()
1010
setup(
1111
name='Flask-OpenTracing',
1212
version=version,
@@ -17,6 +17,7 @@
1717
author_email='[email protected]',
1818
description='OpenTracing support for Flask applications',
1919
long_description=open('README.rst').read(),
20+
long_description_content_type='text/x-rst',
2021
packages=['flask_opentracing', 'tests'],
2122
zip_safe=False,
2223
include_package_data=True,
@@ -46,6 +47,7 @@
4647
'Programming Language :: Python :: 3.5',
4748
'Programming Language :: Python :: 3.6',
4849
'Programming Language :: Python :: 3.7',
50+
'Programming Language :: Python :: 3.8',
4951
'Programming Language :: Python :: Implementation :: CPython',
5052
'Programming Language :: Python :: Implementation :: PyPy',
5153
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',

0 commit comments

Comments
 (0)