Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ you if you don't have it already.

Python version
==============
Tested against Python 3.6
Tested against Python >=3.6

********
Examples
Expand Down
2 changes: 1 addition & 1 deletion pypyraws/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import platform

__version__ = '0.1.1'
__version__ = '1.0.0'


def get_version():
Expand Down
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
--index-url https://pypi.python.org/simple/

###### Install local application in development mode. This will grab install_requires from setup.py.
-e .
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.1
current_version = 1.0.0

[bdist_wheel]
universal = 0
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable',

# Indicate who your project is intended for
'Intended Audience :: Developers',
Expand All @@ -59,7 +59,8 @@

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.6'
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],

# What does your project relate to?
Expand Down