Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
requirements: [test-requirements.txt]
include:
- python-version: '3.7'
requirements: test-requirements_trio-0.11.txt
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build status](https://img.shields.io/github/workflow/status/belm0/perf-timer/CI)](https://github.com/belm0/perf-timer/actions/workflows/ci.yml?query=branch%3Amaster+)
[![Build status](https://img.shields.io/github/actions/workflow/status/belm0/perf-timer/.github/workflows/ci.yml?branch=master)](https://github.com/belm0/perf-timer/actions/workflows/ci.yml?query=branch%3Amaster+)
[![Package version](https://img.shields.io/pypi/v/perf-timer.svg)](https://pypi.org/project/perf-timer)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/perf-timer.svg)](https://pypi.org/project/perf-timer)

Expand Down
3 changes: 1 addition & 2 deletions pylintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[MASTER]
disable=bad-whitespace,
blacklisted-name,
disable=blacklisted-name,
duplicate-code,
invalid-name,
fixme,
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,17 @@
packages=[pkg_name],
package_dir={'': 'src'},
install_requires=[],
python_requires='>=3.7',
python_requires='>=3.10',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'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',
'Programming Language :: Python :: 3.14',
'Framework :: Trio',
],
)
77 changes: 36 additions & 41 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,79 +1,74 @@
#
# This file is autogenerated by pip-compile with python 3.8
# To update, run:
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile --output-file=test-requirements.txt setup.py test-requirements.in
# pip-compile --output-file=test-requirements.txt test-requirements.in
#
astroid==2.8.3
astroid==4.0.1
# via pylint
async-generator==1.10
attrs==25.4.0
# via
# pytest-trio
# outcome
# trio
attrs==21.2.0
coverage[toml]==7.11.0
# via pytest-cov
dill==0.4.0
# via pylint
exceptiongroup==1.3.0
# via
# outcome
# pytest
# trio
coverage[toml]==6.0.2
# via pytest-cov
idna==3.3
idna==3.11
# via trio
iniconfig==1.1.1
iniconfig==2.3.0
# via pytest
isort==5.9.3
isort==7.0.0
# via pylint
lazy-object-proxy==1.6.0
# via astroid
mccabe==0.6.1
mccabe==0.7.0
# via pylint
numpy==1.21.2
numpy==2.2.6
# via -r test-requirements.in
outcome==1.1.0
outcome==1.3.0.post0
# via
# pytest-trio
# trio
packaging==21.0
packaging==25.0
# via pytest
platformdirs==2.4.0
platformdirs==4.5.0
# via pylint
pluggy==1.0.0
# via pytest
py==1.10.0
pluggy==1.6.0
# via
# pytest
# pytest-cov
pygments==2.19.2
# via pytest
pylint==2.11.1
pylint==4.0.2
# via -r test-requirements.in
pyparsing==2.4.7
# via packaging
pytest==6.2.5
pytest==8.4.2
# via
# -r test-requirements.in
# pytest-cov
# pytest-trio
pytest-cov==3.0.0
pytest-cov==7.0.0
# via -r test-requirements.in
pytest-trio==0.7.0
pytest-trio==0.8.0
# via -r test-requirements.in
sniffio==1.2.0
sniffio==1.3.1
# via trio
sortedcontainers==2.4.0
# via trio
toml==0.10.2
tomli==2.3.0
# via
# coverage
# pylint
# pytest
tomli==1.2.1
# via coverage
trio==0.19.0
tomlkit==0.13.3
# via pylint
trio==0.32.0
# via
# -r test-requirements.in
# pytest-trio
typing-extensions==3.10.0.2
typing-extensions==4.15.0
# via
# astroid
# pylint
wrapt==1.13.2
# via astroid

# The following packages are considered to be unsafe in a requirements file:
# setuptools
# exceptiongroup
78 changes: 0 additions & 78 deletions test-requirements_trio-0.11.txt

This file was deleted.