Skip to content

Commit

Permalink
use the latest xandikos, unless we're on old python
Browse files Browse the repository at this point in the history
  • Loading branch information
tobixen committed Nov 2, 2023
1 parent b44ecac commit bf7f39f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
fail-fast: false
matrix:
python:
#- '3.11'
- '3.11'
#- '3.10'
#- '3.9'
- '3.8'
#- '3.8'
- '3.7'
steps:
- uses: actions/checkout@v2
Expand Down
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,21 @@
except:
extra_test_packages = ["mock"]

## TODO: consider if automated testing with radicale in addition to
## xandikos would yield any benefits.
test_packages = [
"pytest",
"pytest-coverage",
"coverage",
"xandikos==0.2.8",
"dulwich==0.20.50",
"radicale",
"sphinx",
]

if sys.version_info.major == 3 and sys.version_info.minor<9:
test_packages.append("xandikos==0.2.8")
test_packages.append("dulwich==0.20.50")
else:
test_packages.append("xandikos")

setup(
name="caldav",
version=version,
Expand Down

0 comments on commit bf7f39f

Please sign in to comment.