diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000000000000000000000000000000000..900df3257fa3d465ab9382b3bfbf2f2e5829dedc --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +--- +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml new file mode 100644 index 0000000000000000000000000000000000000000..4b7f969b7e470b3d88dad463432843e668ed8ca8 --- /dev/null +++ b/.github/workflows/tox.yml @@ -0,0 +1,39 @@ +--- +name: Test Python package with Tox + +on: [pull_request] + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + max-parallel: 4 + fail-fast: false + matrix: + python-version: + - "3.6" + - "3.7" + - "3.8" + - "3.9" + - "3.10" + - "3.11" + - "3.12.0-alpha - 3.12.0" + include: + - os: "ubuntu-latest" + - os: "ubuntu-20.04" + python-version: "3.6" + + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4.5.0 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install tox tox-gh-actions + - name: Test with tox + run: tox diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index f65abfbfce93f2dd8fe42b5f11f13264d8474918..0000000000000000000000000000000000000000 --- a/.travis.yml +++ /dev/null @@ -1,25 +0,0 @@ -language: python -python: -- 2.7 -- 3.5 -- 3.6 -- 3.7 -- 3.8 -install: -- python setup.py install -- pip install coveralls flake8 -script: -- python setup.py test -- flake8 mwclient -after_success: -- coveralls -deploy: - provider: pypi - user: danmichaelo - password: - secure: iRaoF9UNIIzwNR2SP60zL7Ub33lgCTYddk4JkpfNNjz/olZaUEGTbrpttq1wQ9thzwYBgp6PbwspgEdIQWOgDLlT75XowkeLpp7UzRNwKjf7gUVaMJuAYtmhbofaWZFGft3zSbsDEt19z8mqepQXSUUN7dcfH4QVUvishElQT5k= - distributions: "sdist bdist_wheel" - on: - tags: true - repo: mwclient/mwclient - python: '3.8' diff --git a/tox.ini b/tox.ini index 3d3899176fc53495aecb95387fe3c990023b53d9..fdd91440a85ee820d14386341f19ec2c6062e64b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py35,py36,py37,py38,flake +envlist = py27,py35,py36,py37,py38,py39,py310,py311,py312,flake [testenv] deps =