Skip to content

Commit

Permalink
Merge branch 'master' into paramspec
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov authored Jan 24, 2025
2 parents a07fe6b + 9ff3cdd commit 00c51c5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 17 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
cache: 'pip'
cache-dependency-path: '**/requirements*.txt'
- name: Pre-Commit hooks
Expand All @@ -51,19 +51,20 @@ jobs:
name: Test
strategy:
matrix:
pyver:
- 3.12
- 3.11
- >-
3.10
- 3.9
- 3.8
pyver: ['3.9', '3.10', '3.11', '3.12', '3.13']
os: [ubuntu, macos, windows]
experimental: [false]
include:
- pyver: pypy-3.9
os: ubuntu
experimental: false
- os: ubuntu
pyver: "3.14"
experimental: true
fail-fast: true
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 15
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -122,7 +123,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.13
- name: Install dependencies
run:
python -m pip install -U pip wheel setuptools build twine
Expand Down
3 changes: 0 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ The library supports explicit invalidation for specific function call by
The method returns `True` if corresponding arguments set was cached already, `False`
otherwise.


Python 3.8+ is required

Thanks
------

Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-e .

coverage==7.6.1
coverage==7.6.10
pytest==8.3.4
pytest-asyncio==0.24.0
pytest-cov==5.0.0
pytest-asyncio==0.25.2
pytest-cov==6.0.0
pytest-timeout==2.3.1
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13

Development Status :: 5 - Production/Stable

Expand All @@ -39,7 +39,7 @@ keywords =
lru_cache

[options]
python_requires = >=3.8
python_requires = >=3.9
packages = find:

install_requires =
Expand Down

0 comments on commit 00c51c5

Please sign in to comment.