Skip to content

Commit 2e461d1

Browse files
committed
Bump version and specify minimum pyswagger version required
1 parent 08837a7 commit 2e461d1

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
hypothesis==3.4.2
2-
pyswagger==0.8.27
2+
pyswagger>=0.8.28
33
requests==2.13.0

setup.py

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
1+
r"""
2+
File required to relese on PyPI. More info here:
3+
https://packaging.python.org/distributing/#packaging-your-project
4+
5+
To push a new release, assuming running on Windows:
6+
1. Increment the `VERSION` below appropriately.
7+
2. Delete old distributions:
8+
del dist
9+
3. Build the `source` and `wheel` distributions with:
10+
python setup.py sdist bdist_wheel
11+
4. Update the registered package on PyPI with `twine`:
12+
twine register dist\swagger_conformance-<VERSION>-py3-none-any.whl
13+
5. Upload the new packages:
14+
twine upload dist\*
15+
"""
116
from setuptools import find_packages, setup
217
import pypandoc
318

19+
VERSION = '0.1.2'
420
URL = 'https://github.com/olipratt/swagger-conformance'
5-
VERSION = '0.1.1'
621
LONG_DESC = pypandoc.convert('readme.md', 'rst').replace('\r\n', '\n')
722

823

0 commit comments

Comments
 (0)