ignore pickles in data/ and support py3.9

This commit is contained in:
JanLJL
2020-10-29 11:06:20 +01:00
parent decec86e56
commit 30e0ad038d
4 changed files with 7 additions and 4 deletions

2
.gitignore vendored
View File

@@ -1,5 +1,5 @@
# OSACA specific files and folders
osaca/taxCalc/
*.*.pickle
# Byte-compiled / optimized / DLL files
__pycache__/

View File

@@ -3,9 +3,9 @@ language: python
python:
- "3.5"
- "3.6"
# Python 3.7 not working yet
- "3.7"
- "3.8"
- "3.9"
before_install:
# - pip install tox-travis
- pip install codecov

View File

@@ -83,7 +83,7 @@ setup(
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Developers',
@@ -100,6 +100,9 @@ setup(
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
# What doesd your project relate to?

View File

@@ -1,5 +1,5 @@
[tox]
envlist = py35,py36
envlist = py35,py36,py37,py38,py39
[testenv]
commands=
python tests/all_tests.py