Skip to content

Commit d848b6e

Browse files
authored
Merge branch 'master' into eu-excise-number
2 parents 73abd01 + a1fdd5d commit d848b6e

File tree

399 files changed

+21175
-6776
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

399 files changed

+21175
-6776
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -9,42 +9,12 @@ on:
99
- cron: '9 0 * * 1'
1010

1111
jobs:
12-
test_py27:
13-
runs-on: ubuntu-20.04
14-
container:
15-
image: python:2.7.18-buster
16-
strategy:
17-
fail-fast: false
18-
matrix:
19-
python-version: [2.7]
20-
steps:
21-
- uses: actions/checkout@v3
22-
- name: Install dependencies
23-
run: python -m pip install --upgrade pip virtualenv tox
24-
- name: Run tox
25-
run: tox -e "$(echo py${{ matrix.python-version }} | sed -e 's/[.]//g;s/pypypy/pypy/')" --skip-missing-interpreters false
26-
test_legacy:
27-
runs-on: ubuntu-20.04
28-
strategy:
29-
fail-fast: false
30-
matrix:
31-
python-version: [3.5, 3.6, pypy2.7]
32-
steps:
33-
- uses: actions/checkout@v3
34-
- name: Set up Python ${{ matrix.python-version }}
35-
uses: actions/setup-python@v4
36-
with:
37-
python-version: ${{ matrix.python-version }}
38-
- name: Install dependencies
39-
run: python -m pip install --upgrade pip tox
40-
- name: Run tox
41-
run: tox -e "$(echo py${{ matrix.python-version }} | sed -e 's/[.]//g;s/pypypy/pypy/')" --skip-missing-interpreters false
4212
test:
4313
runs-on: ubuntu-latest
4414
strategy:
4515
fail-fast: false
4616
matrix:
47-
python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12, pypy3.9]
17+
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, pypy3.9]
4818
steps:
4919
- uses: actions/checkout@v3
5020
- name: Set up Python ${{ matrix.python-version }}
@@ -60,7 +30,7 @@ jobs:
6030
strategy:
6131
fail-fast: false
6232
matrix:
63-
tox_job: [docs, flake8, headers]
33+
tox_job: [docs, flake8, mypy, headers]
6434
steps:
6535
- uses: actions/checkout@v3
6636
- name: Set up Python

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ __pycache__
66

77
# /
88
/.coverage
9+
/.mypy_cache
10+
/.ruff_cache
911
/.tox
12+
/.venv
1013
/build
1114
/coverage
1215
/dist

0 commit comments

Comments
 (0)