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 0f96a5e commit a9e0e80
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,14 @@ jobs:
os: ubuntu-latest
- python-version: "3.8"
os: ubuntu-latest
- python-version: "3.7"
os: ubuntu-latest
- python-version: "2.7"
os: ubuntu-latest
- 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.3.5 (in development)
------------------------------

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


Version 0.3.4
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ ends in one of ``'.bz2'``, ``'.gz'``, and ``'.xz'``.
Installation
------------

This package runs under Python 2.7, and 3.7+, use pip_ to install:
This package runs under Python 2.7, and 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='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*',
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,!=3.7.*',
install_requires=[
'mock; python_version < "3"',
],
Expand All @@ -29,6 +29,7 @@
'docs': ['sphinx>=5', 'sphinx-rtd-theme'],
},
long_description=io.open('README.rst', encoding='utf-8').read(),
long_description_content_type='text/x-rst',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand All @@ -38,7 +39,6 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'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{27,310,39,38,37,py3}
envlist = py{27,311,310,39,38,py3}
skip_missing_interpreters = true

[testenv]
Expand Down

0 comments on commit a9e0e80

Please sign in to comment.