Skip to content

Commit

Permalink
Merge pull request #23 from danyeaw/master
Browse files Browse the repository at this point in the history
Enforce python version 3.5 and above
  • Loading branch information
freakboy3742 committed Aug 1, 2018
2 parents 6d92161 + 492f0bd commit a785d0f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
14 changes: 7 additions & 7 deletions beekeeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ pull_request:
name: Python lint checks
task: beefore
- smoke-test:
task: py34
name: Smoke build (Python 3.4)
task: py35
name: Smoke build (Python 3.5)
- full-test:
subtasks:
- py3.5:
name: Python 3.5 tests
task: py35
- py3.6:
name: Python 3.6 tests
task: py36
- py3.7:
name: Python 3.7 tests
task: py37
push:
- smoke-test:
task: py34
name: Smoke build (Python 3.4)
task: py35
name: Smoke build (Python 3.5)
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
# url='http://pybee.org/colosseum',
url='https://github.com/pybee/colosseum',
packages=find_packages(exclude=['tests', 'utils']),
python_requires='>=3.5',
install_requires=[],
license='New BSD',
classifiers=[
Expand All @@ -34,8 +35,9 @@
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Software Development :: User Interfaces',
Expand Down

0 comments on commit a785d0f

Please sign in to comment.