From 7ede7c793b3946f1972012daafcc38406da6aeec Mon Sep 17 00:00:00 2001 From: Laurent Gautier Date: Sun, 24 Dec 2023 13:29:07 -0500 Subject: [PATCH] Update deps and compat version numbers. --- .github/workflows/pythonpackage.yml | 6 +++--- pyproject.toml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 11919b5..2bd36b2 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -9,9 +9,9 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.7, 3.8, 3.9, "3.10"] - r-version: [4.0, 'release'] - os: [ubuntu-20.04, ubuntu-latest, macOS-latest] + python-version: [3.8, 3.9, "3.10", "3.11"] + r-version: [4.2, 'release'] + os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest, macOS-latest] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index 7b08621..1735035 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,16 +9,16 @@ build-backend = "setuptools.build_meta" name = "rpy2-r6" description = "Mapping the R package R6" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.8" license = { text = "MIT" } authors = [{ name = "Laurent Gautier", email = "lgautier@gmail.com" }] classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "License :: OSI Approved :: MIT License", "Intended Audience :: Developers", "Intended Audience :: Science/Research", @@ -48,4 +48,4 @@ version = { attr = "rpy2_r6.__version__" } [tool.pytest.ini_options] minversion = "6.0" -testpaths = ["rpy2_r6/tests"] \ No newline at end of file +testpaths = ["rpy2_r6/tests"]