From d15e1dbf0afebd47932b09ca15bf689596a8e536 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Berland?= Date: Mon, 5 Jul 2021 22:16:22 +0200 Subject: [PATCH] Add py39 testing (#149) --- .github/workflows/fmu-tools.yml | 4 +++- README.rst | 2 +- setup.py | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fmu-tools.yml b/.github/workflows/fmu-tools.yml index 41723875..56214b46 100644 --- a/.github/workflows/fmu-tools.yml +++ b/.github/workflows/fmu-tools.yml @@ -21,9 +21,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.6", "3.7", "3.8"] + python-version: ["3.6", "3.7", "3.8", "3.9"] pandas-version: ["0.21.0", "1.*"] exclude: + - python-version: "3.9" + pandas-version: "0.21.0" - python-version: "3.8" pandas-version: "0.21.0" - python-version: "3.7" diff --git a/README.rst b/README.rst index ef0d2ddb..b2573d6c 100644 --- a/README.rst +++ b/README.rst @@ -11,7 +11,7 @@ .. image:: https://img.shields.io/lgtm/grade/python/g/equinor/fmu-tools.svg?logo=lgtm&logoWidth=18 :target: https://lgtm.com/projects/g/equinor/fmu-tools/context:python -.. image:: https://img.shields.io/badge/python-3.6%20|%203.7%20|%203.8-blue.svg +.. image:: https://img.shields.io/badge/python-3.6%20|%203.7%20|%203.8%20|%203.9-blue.svg :target: https://www.python.org diff --git a/setup.py b/setup.py index cc9caba2..cc3ff5d4 100644 --- a/setup.py +++ b/setup.py @@ -169,6 +169,7 @@ def run(self): "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], test_suite="tests", tests_require=TEST_REQUIREMENTS,