From 4821da3a4542c715bfe84d77a58b5aa7639d0c21 Mon Sep 17 00:00:00 2001 From: Nitin Madnani Date: Tue, 13 Sep 2022 16:17:19 -0400 Subject: [PATCH] Update version number and copyright years. --- LICENSE.txt | 2 +- conda-recipe/skll/meta.yaml | 6 +++--- doc/conf.py | 2 +- skll/version.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index c832ae40..7f58d63b 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ New BSD License -Copyright (c) 2012–2019 Educational Testing Service +Copyright (c) 2012–2022 Educational Testing Service All rights reserved. diff --git a/conda-recipe/skll/meta.yaml b/conda-recipe/skll/meta.yaml index 5271af38..bef0738d 100644 --- a/conda-recipe/skll/meta.yaml +++ b/conda-recipe/skll/meta.yaml @@ -1,6 +1,6 @@ package: name: skll - version: 3.0 + version: 3.1 source: path: ../../../skll @@ -32,7 +32,7 @@ build: - summarize_results = skll.utils.commandline.summarize_results:main requirements: - build: + host: - python >=3.8 - pip - setuptools @@ -43,7 +43,7 @@ requirements: - numpy - pandas - ruamel.yaml - - scikit-learn >=1.0.1,<=1.0.2 + - scikit-learn >=1.1.2,<=1.1.3 - scipy - seaborn - tabulate diff --git a/doc/conf.py b/doc/conf.py index bd3ce452..2e88a837 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -46,7 +46,7 @@ # General information about the project. project = u'SciKit-Learn Laboratory' -copyright = u'2012-2021, Educational Testing Service' +copyright = u'2012-2022, Educational Testing Service' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/skll/version.py b/skll/version.py index e49b198d..0e223fed 100644 --- a/skll/version.py +++ b/skll/version.py @@ -8,5 +8,5 @@ :organization: ETS """ -__version__ = '3.0.0' +__version__ = '3.1.0' VERSION = tuple(int(x) for x in __version__.split('.'))