Skip to content

Commit

Permalink
Merge 9e235d6 into 24c575c
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 5, 2023
2 parents 24c575c + 9e235d6 commit 2b9dc0a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "pypy3.7"

steps:
- name: Git clone
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand All @@ -55,15 +56,14 @@ jobs:
run: coverage run -m pytest eazysvn.py tests.py

- name: Check test coverage
run: coverage report -m --fail-under=100
run: |
coverage report -m --fail-under=100
coverage xml
- name: Report to coveralls
run: coveralls
continue-on-error: true
if: "matrix.python-version != '2.7' && matrix.python-version != 'pypy2.7'"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_SERVICE_NAME: github
uses: coverallsapp/github-action@v2
with:
file: coverage.xml

lint:
name: ${{ matrix.toxenv }}
Expand All @@ -79,7 +79,7 @@ jobs:

steps:
- name: Git clone
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python ${{ env.default_python || '3.9' }}
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Changelog
1.16.0 (unreleased)
-------------------

- Add support for Python 3.8, 3.9, 3.10, and 3.11.
- Add support for Python 3.8, 3.9, 3.10, 3.11, and 3.12.

- Drop support for Python 2.7, 3.5 and 3.6.

Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ environment:
- PYTHON: "C:\\Python39"
- PYTHON: "C:\\Python310"
- PYTHON: "C:\\Python311"
- PYTHON: "C:\\Python312"

init:
- "echo %PYTHON%"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Version Control',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py37,py38,py39,py310,py311,pypy3
py37,py38,py39,py310,py311,py312,pypy3

[testenv]
deps =
Expand Down

0 comments on commit 2b9dc0a

Please sign in to comment.