Skip to content

Commit 1db05d8

Browse files
Merge pull request #129 from mixpanel/jared-test-py311-312
Add 3.11, 3.12 support in PyPi metadata, testing matrix
2 parents 3dcd2d2 + a4f18b5 commit 1db05d8

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ on: [push]
44

55
jobs:
66
test:
7-
runs-on: ubuntu-18.04
7+
runs-on: ubuntu-20.04
88
strategy:
99
matrix:
10-
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', 'pypy2', 'pypy3']
10+
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy2', 'pypy3']
1111

1212
steps:
1313
- uses: actions/checkout@v2
@@ -22,4 +22,4 @@ jobs:
2222
pip install -r requirements-testing.txt
2323
- name: Test with pytest
2424
run: |
25-
pytest test_mixpanel.py
25+
pytest test_mixpanel.py

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ def find_version(*paths):
4242
'Programming Language :: Python :: 3.8',
4343
'Programming Language :: Python :: 3.9',
4444
'Programming Language :: Python :: 3.10',
45+
'Programming Language :: Python :: 3.11',
46+
'Programming Language :: Python :: 3.12',
4547
],
4648
keywords='mixpanel analytics',
4749
packages=find_packages(),

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, py34, py35, py36, py37, py38, py39, py310
2+
envlist = py27, py34, py35, py36, py37, py38, py39, py310, py311, py312
33

44
[testenv]
55
deps = -rrequirements-testing.txt

0 commit comments

Comments
 (0)