Skip to content

Commit a35bca4

Browse files
authored
Merge pull request #1105 from compas-dev/remove-python3.6
Remove Python 3.6 from build workflows since it reached end-of-life at the end of 2021.
2 parents 02bb249 + d57ae0d commit a35bca4

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-latest, macos-latest, windows-latest]
17-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
17+
python-version: ['3.7', '3.8', '3.9', '3.10']
1818

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

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
### Removed
1717

18+
* Removed Python 3.6 from build workflows as it reached end-of-life at the end of 2021.
19+
1820

1921
## [1.17.3] 2022-11-09
2022

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313

1414

1515
def read(*names, **kwargs):
16-
return io.open(
17-
path.join(here, *names), encoding=kwargs.get("encoding", "utf8")
18-
).read()
16+
return io.open(path.join(here, *names), encoding=kwargs.get("encoding", "utf8")).read()
1917

2018

2119
long_description = read("README.md")
@@ -42,7 +40,6 @@ def read(*names, **kwargs):
4240
"Operating System :: Microsoft :: Windows",
4341
"Programming Language :: Python",
4442
"Programming Language :: Python :: 3",
45-
"Programming Language :: Python :: 3.6",
4643
"Programming Language :: Python :: 3.7",
4744
"Programming Language :: Python :: 3.8",
4845
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)