Skip to content

Commit

Permalink
Drop support for Python 3.5
Browse files Browse the repository at this point in the history
We don't have an easy way to test with Python 3.5 any more.
  • Loading branch information
arthurdejong committed May 19, 2024
1 parent 201d4d1 commit 0690996
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.5, 3.6, pypy2.7]
python-version: [3.6, pypy2.7]

This comment has been minimized.

Copy link
@hakingboy1234

hakingboy1234 Sep 8, 2024

RIGHT

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{27,35,36,37,38,39,310,311,312,py,py3},flake8,docs,headers
envlist = py{27,36,37,38,39,310,311,312,py,py3},flake8,docs,headers
skip_missing_interpreters = true

[testenv]
Expand Down

0 comments on commit 0690996

Please sign in to comment.