Skip to content

Commit 192fc81

Browse files
committed
[CI] Drop support for python 3.7
1 parent 73ed2ad commit 192fc81

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v4
1919
with:
20-
python-version: "3.10"
20+
python-version: "3.11"
2121
- name: Install dependencies and build
2222
run: |
2323
python -m pip install --upgrade pip

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python-version: ["3.7", "3.8", "3.9", "3.10"]
17+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1818
os: [windows-latest, ubuntu-latest]
1919

2020
runs-on: ${{ matrix.os }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![license](https://img.shields.io/github/license/ObaraEmmanuel/Formation)
44
![tests](https://github.com/ObaraEmmanuel/Formation/workflows/build/badge.svg)
55
[![pypi version](https://img.shields.io/pypi/v/formation-studio.svg)](https://pypi.org/project/formation-studio/)
6-
![python version](https://img.shields.io/badge/python-3.7+-blue.svg)
6+
![python version](https://img.shields.io/badge/python-3.8+-blue.svg)
77
![platforms](https://img.shields.io/badge/Platforms-Linux%20|%20Windows%20|%20Mac%20-purple.svg)
88
[![Documentation Status](https://readthedocs.org/projects/formation-studio/badge/?version=latest)](https://formation-studio.readthedocs.io/en/latest/?badge=latest)
99
## Introduction
@@ -23,7 +23,7 @@ The design below was built solely in Formation Studio (no images or external too
2323

2424
### Installation
2525

26-
To use Formation Studio, [install Python 3.7 or higher](https://www.python.org/downloads/)
26+
To use Formation Studio, [install Python 3.8 or higher](https://www.python.org/downloads/)
2727

2828
Afterwards, install Formation Studio with pip (Python package manager).
2929

docs/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Installation
44
*************
55

6-
To use Formation studio, python 3.7 or higher is required. You can download and install python
6+
To use Formation studio, python 3.8 or higher is required. You can download and install python
77
`here <https://www.python.org/downloads/>`_.
88

99
Formation studio can be installed using pip:
@@ -14,11 +14,11 @@ Formation studio can be installed using pip:
1414
1515
.. note:: Some linux distributions do not include pip and require you to install it separately. You can follow `these instructions <https://pip.pypa.io/en/stable/installing/>`_ to do so.
1616

17-
If you are using multiple versions of python, pip can install Formation studio on a per version basis. For example, if you wanted to specify python 3.7:
17+
If you are using multiple versions of python, pip can install Formation studio on a per version basis. For example, if you wanted to specify python 3.8:
1818

1919
.. code-block:: bash
2020
21-
pip3.7 install formation-studio
21+
pip3.8 install formation-studio
2222
2323
2424
Installation on Linux

0 commit comments

Comments
 (0)