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 f84cb49 commit 17fea32
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 11 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- python-version: "3.8"
args: ""
os: ubuntu-latest
- python-version: "3.7"
- python-version: pypy-3.10
args: ""
os: ubuntu-latest
- python-version: pypy-3.9
Expand All @@ -36,9 +36,6 @@ jobs:
- python-version: pypy-3.8
args: ""
os: ubuntu-latest
- python-version: pypy-3.7
args: ""
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.10 (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.

Add ``shape`` property to ``Context```and ``Definition`` returning a named tuple of
``(len(objects), len(properties))`` (PR Tomáš Mikula).
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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 @@ -7,7 +7,7 @@ User Guide
Installation
------------

:mod:`concepts` is a pure-python package that runs under Python 3.7+.
:mod:`concepts` is a pure-python package that runs under Python 3.8+.
It is `available from PyPI`_. To install it with pip_, run the following
command:

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=[
'bitsets~=0.7',
'graphviz~=0.7',
Expand All @@ -30,14 +30,14 @@
'docs': ['sphinx>=5', 'sphinx-autodoc-typehints', '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 17fea32

Please sign in to comment.