From 30e0ad038d7a158a9656c22c79085b614535cfb5 Mon Sep 17 00:00:00 2001 From: JanLJL Date: Thu, 29 Oct 2020 11:06:20 +0100 Subject: [PATCH] ignore pickles in data/ and support py3.9 --- .gitignore | 2 +- .travis.yml | 2 +- setup.py | 5 ++++- tox.ini | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 2d40989..6ef37fa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ # OSACA specific files and folders -osaca/taxCalc/ +*.*.pickle # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/.travis.yml b/.travis.yml index 3edb959..421377a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/setup.py b/setup.py index ead2243..38785b0 100755 --- a/setup.py +++ b/setup.py @@ -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? diff --git a/tox.ini b/tox.ini index 37ea5e3..6af586d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py35,py36 +envlist = py35,py36,py37,py38,py39 [testenv] commands= python tests/all_tests.py