From a7a2e43041437f507a376eac49dfcaa4b43b5e39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Wed, 18 Mar 2020 15:56:20 +0100 Subject: [PATCH] travis - build on 3.9 as well + Trove changes --- .travis.yml | 1 + setup.cfg | 4 +++- snakehouse/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6bfe502..feba3c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,7 @@ language: python python: - "3.7" - "3.8" + - "nightly" cache: pip script: - cd example diff --git a/setup.cfg b/setup.cfg index 1f5aaef..56bf641 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,12 +15,14 @@ classifier = Programming Language :: Python Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 Programming Language :: Python :: Implementation :: CPython Operating System :: POSIX Operating System :: OS Independent Development Status :: 5 - Production/Stable License :: OSI Approved :: MIT License - Topic :: Software Development :: Libraries + Topic :: Software Development :: Code Generators + Topic :: Software Development :: Build Tools [pycodestyle] max-line-length = 100 diff --git a/snakehouse/__init__.py b/snakehouse/__init__.py index 5f2ca9a..bf484c0 100644 --- a/snakehouse/__init__.py +++ b/snakehouse/__init__.py @@ -1,4 +1,4 @@ from .build import build from .multibuild import Multibuild -__version__ = '1.0' +__version__ = '1.0.0' -- GitLab