Skip to content

Commit

Permalink
Replaced travis com github actions
Browse files Browse the repository at this point in the history
Python 2.* and < 3.7 is no longer supported by the Python core team
  • Loading branch information
marcelometal committed Oct 6, 2023
1 parent 781c878 commit 0eaa5e7
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 13 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: unittests
on:
push:
pull_request:
types: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python
id: setup-python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
apt-get install -y librtmp-dev libevent-dev
make setup
- name: Test with pyvows
run: make test
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ def run_setup(extension_modules=[]):
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
packages=['derpconf'],
package_dir={"derpconf": "derpconf"},
Expand Down

0 comments on commit 0eaa5e7

Please sign in to comment.