Skip to content

Commit 0e262a6

Browse files
author
thomas
authored
Merge pull request #15 from pypyr/dev
v1.0 bump - no functional change
2 parents 90c42da + 42fab69 commit 0e262a6

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ you if you don't have it already.
5151

5252
Python version
5353
==============
54-
Tested against Python 3.6
54+
Tested against Python >=3.6
5555

5656
********
5757
Examples

pypyraws/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import platform
44

5-
__version__ = '0.1.1'
5+
__version__ = '1.0.0'
66

77

88
def get_version():

requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
--index-url https://pypi.python.org/simple/
2-
31
###### Install local application in development mode. This will grab install_requires from setup.py.
42
-e .

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.1
2+
current_version = 1.0.0
33

44
[bdist_wheel]
55
universal = 0

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
# 3 - Alpha
4848
# 4 - Beta
4949
# 5 - Production/Stable
50-
'Development Status :: 3 - Alpha',
50+
'Development Status :: 5 - Production/Stable',
5151

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

6060
# Specify the Python versions you support here. In particular, ensure
6161
# that you indicate whether you support Python 2, Python 3 or both.
62-
'Programming Language :: Python :: 3.6'
62+
'Programming Language :: Python :: 3.6',
63+
'Programming Language :: Python :: 3.7'
6364
],
6465

6566
# What does your project relate to?

0 commit comments

Comments
 (0)