Skip to content

Commit ed0b666

Browse files
committed
remove 3.6
1 parent 8871653 commit ed0b666

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
15-
python-version: [3.6, 3.7, 3.8, 3.9]
15+
python-version: [3.7, 3.8, 3.9]
1616

1717
steps:
1818
- uses: actions/checkout@v2

requirements-dev.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ invoke >=0.14
1010
ipykernel
1111
ipython >=5.8
1212
isort
13+
jinja2
1314
m2r
1415
nbsphinx
1516
pydocstyle
1617
pytest >=3.2
18+
requests >=2.24
1719
sphinx_compas_theme >=0.15.18
18-
sphinx ==4.5
19-
jinja2 >= 3.0
20+
sphinx
2021
twine
2122
wheel
2223
-e .

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ def read(*names, **kwargs):
4242
"Operating System :: Microsoft :: Windows",
4343
"Programming Language :: Python",
4444
"Programming Language :: Python :: 3",
45-
"Programming Language :: Python :: 3.6",
4645
"Programming Language :: Python :: 3.7",
4746
"Programming Language :: Python :: 3.8",
4847
"Programming Language :: Python :: 3.9",
@@ -57,7 +56,7 @@ def read(*names, **kwargs):
5756
include_package_data=True,
5857
zip_safe=False,
5958
install_requires=requirements,
60-
python_requires=">=3.6",
59+
python_requires=">=3.7",
6160
extras_require=optional_requirements,
6261
entry_points={
6362
"console_scripts": [],

0 commit comments

Comments
 (0)