Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update supported Python versions #103

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]

steps:
-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install-from-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
shell: bash -el {0}
strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]

steps:
-
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.12"
-
name: Install pypa/build
run: |
Expand All @@ -45,7 +45,7 @@ jobs:

strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]

steps:
-
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.12"
-
name: Install flake8
run: |
Expand All @@ -46,7 +46,7 @@ jobs:
shell: bash -el {0}
strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]

steps:
-
Expand Down Expand Up @@ -106,14 +106,14 @@ jobs:
name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.12"
-
name: Install miniconda
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: latest
environment-file: conda_environment.yml
python-version: "3.9"
python-version: "3.12"
-
name: Install se-t-ece from source
run: |
Expand Down
2 changes: 1 addition & 1 deletion conda_environment.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
channels:
- conda-forge
dependencies:
- python>=3.7
- python>=3.8
- pip
- iris>=3.1,!=3.2.0,!=3.2.0.post0
- cartopy>=0.20
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/source/getting-started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Installation Using Conda
Get the conda package manager following the `instructions`_ for your operating
system. Create an environment and activate it with::

conda create --name <ENVIRONMENT_NAME> python>=3.7
conda create --name <ENVIRONMENT_NAME> python>=3.8
conda activate <ENVIRONMENT_NAME>

Alternatively, activate an existing conda environment you want to use for this
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"scriptengine>=0.8.1",
"pyYAML>=5.1",
Expand Down
Loading