Skip to content

Commit 85abf6f

Browse files
committed
Add python 3.11, tweak build config, add build badge, up versions of actions
1 parent 81a9a9f commit 85abf6f

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.github/workflows/tox_tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,20 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10"]
16+
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818
exclude:
1919
- os: windows-latest
2020
python-version: "2.7"
21+
- os: ubuntu-latest
22+
python-version: "3.6"
2123
fail-fast: false
2224

2325
steps:
24-
- uses: "actions/checkout@v2"
26+
- uses: "actions/checkout@v3"
2527
with:
2628
submodules: true
27-
- uses: "actions/setup-python@v2"
29+
- uses: "actions/setup-python@v3"
2830
with:
2931
python-version: "${{ matrix.python-version }}"
3032
- name: "Install dependencies"
@@ -39,7 +41,7 @@ jobs:
3941
4042
- name: "Install DAWG for ${{ matrix.python-version }}"
4143
run: |
42-
python setup.py install
44+
pip install .
4345
4446
- name: "Run tests for ${{ matrix.python-version }}"
4547
run: |

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
DAWG
22
====
33

4-
.. image:: https://travis-ci.org/pytries/DAWG.png?branch=master
5-
:target: https://travis-ci.org/pytries/DAWG
4+
.. image:: https://github.com/pymorphy2-fork/DAWG/actions/workflows/tox_tests.yml/badge.svg
5+
:target: https://github.com/pymorphy2-fork/DAWG/actions/workflows/tox_tests.yml
66

77
This package provides DAWG(DAFSA_)-based dictionary-like
88
read-only objects for Python (2.x and 3.x).

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
'Programming Language :: Python :: 3.8',
3737
'Programming Language :: Python :: 3.9',
3838
'Programming Language :: Python :: 3.10',
39+
'Programming Language :: Python :: 3.11',
3940
'Programming Language :: Python :: Implementation :: CPython',
4041
'Topic :: Software Development :: Libraries :: Python Modules',
4142
'Topic :: Scientific/Engineering :: Information Analysis',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py35,py35-locale,py36,py37,py38,py39,py310
2+
envlist = py27,py35,py35-locale,py36,py37,py38,py39,py310,py311
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)