We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c06ecdd commit cce1388Copy full SHA for cce1388
2 files changed
.github/workflows/main.yml
@@ -21,6 +21,17 @@ jobs:
21
- "3.11"
22
- "3.12"
23
- "3.13"
24
+ include:
25
+ - python: "3.9"
26
+ tox-env: "py39"
27
+ - python: "3.10"
28
+ tox-env: "py310"
29
+ - python: "3.11"
30
+ tox-env: "py311"
31
+ - python: "3.12"
32
+ tox-env: "py312"
33
+ - python: "3.13"
34
+ tox-env: "py313"
35
steps:
36
- uses: actions/checkout@v4
37
- name: Setup python
@@ -30,7 +41,7 @@ jobs:
41
- name: Install tox
42
run: pip install tox
43
- name: Run tests
- run: tox -e py${{ matrix.python }}
44
+ run: tox -e ${{ matrix.tox-env }}
45
- name: Run linters
46
run: tox -e pre-commit
47
- name: Run type checking
mailtrap/api/general.py
@@ -24,4 +24,3 @@ def billing(self) -> BillingApi:
@property
def permissions(self) -> PermissionsApi:
return PermissionsApi(client=self._client)
-
0 commit comments