Skip to content

Commit

Permalink
added py35
Browse files Browse the repository at this point in the history
  • Loading branch information
lsbardel committed Mar 16, 2019
1 parent 43f1799 commit d7c6bb2
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
13 changes: 13 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
version: 2
jobs:
test35:
docker:
- image: circleci/python:3.5
steps:
- checkout
- run:
name: install
command: sudo ./dev/install.sh
- run:
name: test
command: pytest
test36:
docker:
- image: circleci/python:3.6
Expand Down Expand Up @@ -54,10 +65,12 @@ workflows:
build-deploy:
jobs:
- tests
- test35
- test36
- deploy-release:
requires:
- tests
- test35
- test36
filters:
branches:
Expand Down
4 changes: 4 additions & 0 deletions ccy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
"""Python currencies"""

__version__ = '1.0.0'


from .core.currency import (
currency, currencydb, ccypair, currency_pair,
dump_currency_table
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import os
from setuptools import setup, find_packages

import ccy


def read(name):
filename = os.path.join(os.path.dirname(__file__), name)
Expand Down Expand Up @@ -32,8 +34,8 @@ def requirements(name):

meta = dict(
name='ccy',
version='0.8.0',
description='Python currencies',
version=ccy.__version__,
description=ccy.__doc__,
author='Luca Sbardella',
author_email="[email protected]",
maintainer_email="[email protected]",
Expand All @@ -45,14 +47,12 @@ def requirements(name):
tests_require=tests_require,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand Down

0 comments on commit d7c6bb2

Please sign in to comment.