Skip to content

Commit

Permalink
drop Python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
xflr6 committed Jul 22, 2023
1 parent c451abd commit c711c82
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@ jobs:
os: ubuntu-latest
- python-version: "3.8"
os: ubuntu-latest
- python-version: "3.7"
- python-version: pypy-3.10
os: ubuntu-latest
- python-version: pypy-3.9
os: ubuntu-latest
- python-version: pypy-3.8
os: ubuntu-latest
- python-version: pypy-3.7
os: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Changelog
Version 0.6.2 (in development)
------------------------------

Tag Python 3.11 support.
Drop Python 3.7 support and tag Python 3.11 support.


Version 0.6.1
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Links
Installation
------------

This package runs under Python 3.7+, use pip_ to install:
This package runs under Python 3.8+, use pip_ to install:

.. code:: bash
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
license_file = LICENSE.txt
license_files = LICENSE.txt

[sdist]
formats = zip
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
packages=find_packages(),
platforms='any',
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=[
'google-api-python-client',
'oauth2client>=1.5.0',
Expand All @@ -30,14 +30,14 @@
'docs': ['sphinx>=5', 'sphinx-rtd-theme'],
},
long_description=pathlib.Path('README.rst').read_text(encoding='utf-8'),
long_description_content_type='text/x-rst',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
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{310,39,38,37}
envlist = py{311,310,39,38}
skip_missing_interpreters = true

[testenv]
Expand Down

0 comments on commit c711c82

Please sign in to comment.