Skip to content

Commit

Permalink
1.3.4 broke due to the style test
Browse files Browse the repository at this point in the history
  • Loading branch information
tobixen committed Jul 19, 2023
1 parent ad763f2 commit cedbcf4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,17 @@ based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

This project should more or less adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.4] - 2023-07-19
## [1.3.5] - 2023-07-19

Very minor test fix

### Fixed

Very minor test fix, ref https://github.com/python-caldav/caldav/issues/300 , https://github.com/python-caldav/caldav/issues/320 and https://github.com/python-caldav/caldav/pull/321
One of the tests has been partially disabled, ref https://github.com/python-caldav/caldav/issues/300 , https://github.com/python-caldav/caldav/issues/320 and https://github.com/python-caldav/caldav/pull/321

## [1.3.4] - 2023-07-19 [YANKED]

... Github has some features that it will merge pull requests only when all tests passes ... but somehow I can't get it to work, so 1.3.4 broke the style test again ...

## [1.3.3] - 2023-07-19

Expand Down
2 changes: 1 addition & 1 deletion caldav/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import vobject.icalendar

__version__ = "1.3.4"
__version__ = "1.3.5"

from .davclient import DAVClient
from .objects import *
Expand Down
6 changes: 3 additions & 3 deletions tests/test_caldav_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -952,12 +952,12 @@ def testHugeTreeParam(self):
## It seems like the huge_tree flag is not necessary in all
## environments as of 2023-07. Perhaps versioning issues with
## the lxml library.
#davclient.huge_tree = False
#try:
# davclient.huge_tree = False
# try:
# import pdb; pdb.set_trace()
# DAVResponse(resp, davclient=davclient)
# assert False
#except Exception as e:
# except Exception as e:
# assert type(e) == lxml.etree.XMLSyntaxError

davclient.huge_tree = True
Expand Down

0 comments on commit cedbcf4

Please sign in to comment.