From 9ed466fe36cd73999dad77fe2e5f7d7991d71407 Mon Sep 17 00:00:00 2001 From: Andreas Pedersen Date: Wed, 10 Jan 2024 13:52:33 +0100 Subject: [PATCH] removed python 3.8 --- .github/workflows/ci_pip.yml | 2 +- .github/workflows/python-package.yml | 2 +- CONTRIBUTING.rst | 2 +- pyproject.toml | 3 +-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci_pip.yml b/.github/workflows/ci_pip.yml index 6f1abe24..7996d399 100644 --- a/.github/workflows/ci_pip.yml +++ b/.github/workflows/ci_pip.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11'] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 1d0dd54c..4fafd5ce 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11'] if: "!contains(github.event.head_commit.message, '[ci skip]')" steps: diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 768d8ef8..b1ca1512 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -102,7 +102,7 @@ Before you submit a pull request, check that it meets these guidelines: 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. -3. The pull request should work for Python 3.8, 3.9, and 3.10, and for PyPy. Check +3. The pull request should work for Python 3.9, 3.10, and 3.11, and for PyPy. Check https://travis-ci.com/easyScience/EasyReflectometryLib/pull_requests and make sure that the tests pass for all supported Python versions. diff --git a/pyproject.toml b/pyproject.toml index c4cc655e..27fa016c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ classifiers = [ "Topic :: Scientific/Engineering", "Development Status :: 3 - Alpha" ] -requires-python = ">=3.8,<3.12" +requires-python = ">=3.9,<3.12" dependencies = [ "easyScienceCore @ git+https://github.com/easyscience/easycore.git@failed_unit_check", "refnx>=0.1.15", @@ -75,7 +75,6 @@ isolated_build = True envlist = py{38,39,310,311} [gh-actions] python = - 3.8: py38 3.9: py39 3.10: py310 3.11: py311