Skip to content

Commit

Permalink
drop python3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
m.kindritskiy committed Feb 2, 2022
1 parent e22ca24 commit 86e00ac
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# pip-compile requirements.in
#
aiopg==1.0.0 # via -r requirements.in
graphql-core==3.1.2 ; python_version >= "3.6" # via -r requirements.in
graphql-core==3.1.2 ; python_version >= "3.7" # via -r requirements.in
prometheus-client==0.8.0 # via -r requirements.in
protobuf==3.13.0 # via -r requirements.in
psycopg2-binary==2.8.6 # via aiopg
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
packages=find_packages(exclude=['test*']),
include_package_data=True,
license='BSD-3-Clause',
python_requires='>=3.6',
python_requires='>=3.7',
install_requires=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
],
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,pypy3,py38,py39,py310
envlist = py37,pypy3,py38,py39,py310

[testenv]
commands = py.test tests {posargs}
Expand All @@ -26,7 +26,6 @@ filterwarnings =

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
Expand Down

0 comments on commit 86e00ac

Please sign in to comment.