Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
joente committed Mar 16, 2023
1 parent ef451c4 commit 3c1f3f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion pyleri/regex.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def _run_export_py(self, py_indent, indent, classes):

@c_export
def _run_export_c(self, c_indent, indent, enums, gid):
assert not(self._compiled.flags & re.IGNORECASE), \
assert not (self._compiled.flags & re.IGNORECASE), \
'libcleri has currently no support for the re.IGNORECASE flag'
return 'cleri_regex({}, "{}")'.format(
gid,
Expand Down

0 comments on commit 3c1f3f3

Please sign in to comment.