Skip to content

Commit f8f0255

Browse files
committed
Set minimum supported python version to 3.8
1 parent 6e0c259 commit f8f0255

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ubuntu-latest, macos-latest, windows-latest]
18-
python-version: [3.7, 3.8, 3.9]
18+
python-version: [3.8]
1919

2020
steps:
2121
- uses: actions/checkout@v2

README.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ COMPAS CEM
2828
:target: https://zenodo.org/badge/latestdoi/278780552
2929
:alt: Zenodo DOI
3030

31-
.. image:: https://img.shields.io/twitter/follow/compas_dev?style=social
32-
:target: https://twitter.com/compas_dev
33-
:alt: Twitter follow
34-
3531
.. end-badges
3632
3733
.. _COMPAS: https://compas.dev/
@@ -98,7 +94,7 @@ If no errors show up, celebrate 🎉! You have a working installation of **COMPA
9894
Grasshopper plugin
9995
------------------
10096

101-
**Warning**: Note that `Grasshopper`_ plugin of ****COMPAS CEM** is only supported in **Rhino 7**.
97+
**Warning**: Note that `Grasshopper`_ plugin of **COMPAS CEM** is only supported in **Rhino 6** and **Rhino 7**.
10298

10399
Once **COMPAS CEM** was installed from the comment line, we can additionally link it to `Rhino`_ and use it as `Grasshopper`_ plugin:
104100

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ def read(*names, **kwargs):
4646
"Operating System :: Microsoft :: Windows",
4747
"Programming Language :: Python",
4848
"Programming Language :: Python :: 3",
49-
"Programming Language :: Python :: 3.6",
50-
"Programming Language :: Python :: 3.7",
5149
"Programming Language :: Python :: 3.8",
5250
"Programming Language :: Python :: 3.9",
5351
"Programming Language :: Python :: Implementation :: CPython",
@@ -61,7 +59,7 @@ def read(*names, **kwargs):
6159
include_package_data=True,
6260
zip_safe=False,
6361
install_requires=requirements,
64-
python_requires=">=3.6",
62+
python_requires=">=3.8",
6563
extras_require=optional_requirements,
6664
entry_points={
6765
"console_scripts": [],

0 commit comments

Comments
 (0)