Skip to content

Commit d23e392

Browse files
committed
Removed explicit support for Python 2
1 parent 02c769c commit d23e392

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[bdist_wheel]
22
# This flag says that the code is written to work on both Python 2 and Python
33
# 3.
4-
universal=1
4+

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
setup(
1717
name='slots',
1818

19-
version='0.3.1',
19+
version='0.4.0',
2020

2121
description='A multi-armed bandit library for Python',
2222
long_description=long_description,
@@ -50,9 +50,9 @@
5050

5151
# Specify the Python versions you support here. In particular, ensure
5252
# that you indicate whether you support Python 2, Python 3 or both.
53-
'Programming Language :: Python :: 2.7',
54-
'Programming Language :: Python :: 3.4',
5553
'Programming Language :: Python :: 3.5',
54+
'Programming Language :: Python :: 3.6',
55+
'Programming Language :: Python :: 3.7',
5656
],
5757

5858
# What does your project relate to?

0 commit comments

Comments
 (0)