Skip to content

Commit 9fc548d

Browse files
authored
Merge pull request #3 from timofurrer/chore/maintenance
Chore/maintenance
2 parents 85671ca + 6fd076b commit 9fc548d

4 files changed

Lines changed: 17 additions & 15 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,16 @@ jobs:
1515
fail-fast: false
1616
max-parallel: 8
1717
matrix:
18-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
18+
python-version: ['3.9', '3.13']
1919
os: [ubuntu-latest, windows-latest, macOS-latest]
20-
include:
21-
- os: ubuntu-20.04
22-
python-version: 3.5
23-
- os: ubuntu-20.04
24-
python-version: 3.6
2520

2621

2722
runs-on: ${{ matrix.os }}
2823

2924
steps:
30-
- uses: actions/checkout@v3
31-
- name: Set up Python 3.10
32-
uses: actions/setup-python@v4
25+
- uses: actions/checkout@v4
26+
- name: Set up Python
27+
uses: actions/setup-python@v5
3328
with:
3429
python-version: ${{ matrix.python-version }}
3530
- name: Install dependencies
@@ -44,4 +39,4 @@ jobs:
4439
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
4540
- name: Test with pytest
4641
run: |
47-
pytest tests/
42+
pytest tests/

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
id-token: write
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Set up Python
19-
uses: actions/setup-python@v3
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: '3.x'
2222
- name: Install dependencies
@@ -26,4 +26,4 @@ jobs:
2626
- name: Build package
2727
run: python -m build
2828
- name: Publish package distributions to PyPI
29-
uses: pypa/gh-action-pypi-publish@release/v1
29+
uses: pypa/gh-action-pypi-publish@release/v1

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ From high to low:
7070
* and
7171
* not
7272

73-
.. |Build Status| image:: https://travis-ci.org/timofurrer/tag-expressions.png?branch=master
74-
:target: https://travis-ci.org/timofurrer/tag-expressions
73+
.. |Build Status| image:: https://github.com/timofurrer/tag-expressions/actions/workflows/build.yml/badge.svg
74+
:target: https://github.com/timofurrer/tag-expressions/actions/workflows/build.yml
7575
.. |PyPI package version| image:: https://badge.fury.io/py/tag-expressions.svg
7676
:target: https://badge.fury.io/py/tag-expressions
7777
.. |PyPI python versions| image:: https://img.shields.io/pypi/pyversions/tag-expressions.svg

setup.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,13 @@ def read_readme():
7979
'Programming Language :: Python :: 3.4',
8080
'Programming Language :: Python :: 3.5',
8181
'Programming Language :: Python :: 3.6',
82+
'Programming Language :: Python :: 3.7',
83+
'Programming Language :: Python :: 3.8',
84+
'Programming Language :: Python :: 3.9',
85+
'Programming Language :: Python :: 3.10',
86+
'Programming Language :: Python :: 3.11',
87+
'Programming Language :: Python :: 3.12',
88+
'Programming Language :: Python :: 3.13',
8289
'Programming Language :: Python :: Implementation',
8390
'Programming Language :: Python :: Implementation :: CPython',
8491
'Programming Language :: Python :: Implementation :: PyPy',

0 commit comments

Comments
 (0)