Skip to content

Commit

Permalink
Drop support for python 3.5 (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
randomir authored Apr 30, 2021
1 parent e29e725 commit c4f1761
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ workflows:
- test-linux:
matrix:
parameters:
python-version: &python-versions ["3.5.10", "3.6.12", "3.7.9", "3.8.6", "3.9.0"]
python-version: &python-versions ["3.6.12", "3.7.9", "3.8.6", "3.9.0"]

- test-macos:
matrix:
Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
environment:
matrix:
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37-x64"
- PYTHON: "C:\\Python38-x64"
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
except SyntaxError:
execfile(package_info_path, package_info)

python_requires = '>=3.5'
python_requires = '>=3.6'

# Package requirements, minimal pinning
install_requires = ['requests[socks]>=2.18', 'homebase>=1.0',
Expand All @@ -38,7 +38,6 @@
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'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

0 comments on commit c4f1761

Please sign in to comment.