Skip to content

Commit b88bac2

Browse files
authored
Merge pull request #14 from vanschelven/github-workflows
Update Python version info
2 parents 8d6969a + 0aaacb4 commit b88bac2

File tree

5 files changed

+43
-2682
lines changed

5 files changed

+43
-2682
lines changed

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Continuous Integration
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10",]
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Set up Python ${{ matrix.python-version }}
20+
uses: actions/setup-python@v5
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
- name: Install pytest
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install pytest
27+
- name: Editable install of the package itself
28+
run: |
29+
python -m pip install -e .
30+
- name: Run Tests
31+
run: |
32+
pytest

.travis.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,9 @@ Parse JavaScript source maps.
3737
```
3838

3939
### Compatibility
40-
* Python 2.6
41-
* Python 2.7
42-
* Python 3.3
43-
* Python 3.4
44-
* Python 3.5
45-
* PyPy
46-
* PyPy3
40+
* Python 3.9
41+
* Python 3.10
42+
* Python 3.11
43+
* Python 3.12
44+
* Python 3.13
45+
* PyPy 3.10

0 commit comments

Comments
 (0)