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 3fd9ebb commit ec95ffb
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 10 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 @@ -7,7 +7,7 @@ Version 0.6 (in development)

Drop Python 2 support.

Drop Python 3.5 and 3.6 support and tag Python 3.9, 3.10, and 3.11 support.
Drop Python 3.5, 3.6, and 3.7 support and tag Python 3.9, 3.10, and 3.11 support.


Version 0.5.12
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,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 docs/manual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Installation
------------

:mod:`features` is a pure-python package implementing **feature set algebra**
as commonly used in linguistics. It runs under both Python 3.7+ and is
as commonly used in linguistics. It runs under both Python 3.8+ and is
`available from PyPI`_. To install it using pip_, run the following command:

.. 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 @@ -21,7 +21,7 @@
package_data={'features': ['config.ini']},
zip_safe=False,
platforms='any',
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=[
'concepts~=0.7',
'fileconfig~=0.5',
Expand All @@ -33,14 +33,14 @@
'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',
'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 ec95ffb

Please sign in to comment.