Skip to content

Commit 4002ff6

Browse files
authored
[misc] Drop support for Python 3.6 (#28)
1 parent 0f481fb commit 4002ff6

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
environment: deploy
1111
steps:
1212
- uses: actions/checkout@v2
13-
- name: Set up Python 3.6
13+
- name: Set up Python 3.7
1414
uses: actions/setup-python@v2
1515
with:
16-
python-version: 3.6
16+
python-version: 3.7
1717
- name: Package RepoBee
1818
run: |
1919
python -m pip install --upgrade pip wheel

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest]
20-
python-version: [3.6, 3.7, 3.8, 3.9]
20+
python-version: [3.7, 3.8, 3.9]
2121
exclude:
2222
- os: macos-latest
2323
python-version: 3.7

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![Build Status](https://github.com/repobee/repobee-feedback/actions/workflows/tests.yml/badge.svg)](https://github.com/repobee/repobee-feedback/actions/workflows/tests.yml)
33
[![Code Coverage](https://codecov.io/gh/repobee/repobee-feedback/branch/master/graph/badge.svg)](https://codecov.io/gh/repobee/repobee-feedback)
44
[![PyPi Version](https://badge.fury.io/py/repobee-feedback.svg)](https://badge.fury.io/py/repobee-feedback)
5-
![Supported Python Versions](https://img.shields.io/badge/python-3.6%7C3.7%7C3.8-blue)
5+
![Supported Python Versions](https://img.shields.io/badge/python-3.7%7C3.8-blue)
66
![Supported Platforms](https://img.shields.io/badge/platforms-Linux%2C%20macOS-blue.svg)
77
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
88
[![Code Style: Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,10 @@
4242
extras_require=dict(TEST=test_requirements),
4343
include_package_data=True,
4444
zip_safe=False,
45-
python_requires=">=3.6",
45+
python_requires=">=3.7",
4646
classifiers=[
4747
"Development Status :: 3 - Alpha",
4848
"Intended Audience :: Education",
49-
"Programming Language :: Python :: 3.5",
50-
"Programming Language :: Python :: 3.6",
5149
"Programming Language :: Python :: 3.7",
5250
"Programming Language :: Python :: 3.8",
5351
"Programming Language :: Python :: Implementation :: CPython",

0 commit comments

Comments
 (0)