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 7236bab commit 7da63c7
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
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
Expand Up @@ -5,7 +5,7 @@ Changelog
Version 0.8.5 (in development)
------------------------------

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


Version 0.8.4
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -36,7 +36,7 @@ Links
Installation
------------

This package runs under Python 3.7+ and has no required dependencies,
This package runs under Python 3.8+ and has no required dependencies,
use pip_ to install:

.. code:: bash
Expand Down
2 changes: 1 addition & 1 deletion docs/manual.rst
Expand Up @@ -17,7 +17,7 @@ integers (``&, |, ^, ~``).
Installation
------------

:mod:`bitsets` is a pure-python package that runs under Python 3.7+.
:mod:`bitsets` is a pure-python package that runs under Python 3.8+.
To install it with using pip_, run the following command:

.. code:: bash
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -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
Expand Up @@ -19,21 +19,21 @@
},
packages=find_packages(),
platforms='any',
python_requires='>=3.7',
python_requires='>=3.8',
extras_require={
'dev': ['tox>=3', 'flake8', 'pep8-naming', 'wheel', 'twine'],
'test': ['pytest>=7', 'pytest-cov'],
'docs': ['sphinx>=5', 'sphinx-rtd-theme'],
'visualization': ['graphviz~=0.7'],
},
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',
'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
@@ -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 7da63c7

Please sign in to comment.