Skip to content

Commit 406c0c4

Browse files
authored
Merge pull request #75 from auscompgeek/drop-py34
Drop Python 3.4 support
2 parents b0a7835 + 028ae4f commit 406c0c4

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ sudo: false
33
env:
44
- RUNCOVERAGE=1 ROBOTPY_NO_DEPS=1
55
python:
6-
- "3.4"
76
- "3.5"
87
- "3.6"
98
# command to install dependencies
@@ -27,4 +26,4 @@ notifications:
2726
- https://webhooks.gitter.im/e/2fb1c026e64fdd70d27b
2827
on_success: change
2928
on_failure: always
30-
on_start: never
29+
on_start: never

setup.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,15 @@
5353
keywords='frc first robotics',
5454
install_requires=install_requires if not os.environ.get('ROBOTPY_NO_DEPS') else None,
5555
packages=find_packages(),
56+
license='BSD',
57+
classifiers=[
58+
"Development Status :: 5 - Production/Stable",
59+
"Intended Audience :: Developers",
60+
"Intended Audience :: Education",
61+
"License :: OSI Approved :: BSD License",
62+
"Operating System :: OS Independent",
63+
"Programming Language :: Python :: 3.5",
64+
"Programming Language :: Python :: 3.6",
65+
"Topic :: Scientific/Engineering",
66+
],
5667
)

0 commit comments

Comments
 (0)