Skip to content

Commit

Permalink
Merge pull request #988 from IsakTheHacker/regex-2023.10.3
Browse files Browse the repository at this point in the history
Update regex package to version 2023.10.3
  • Loading branch information
mhsmith committed Oct 12, 2023
2 parents eb52c1d + f423274 commit da72f66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/pypi/packages/regex/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package:
name: regex
version: "2021.10.23"
version: "2023.10.3"
2 changes: 1 addition & 1 deletion server/pypi/packages/regex/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ class TestRegex(unittest.TestCase):

def test_basic(self):
import regex
self.assertEquals("cde", regex.search(r"(\w\w\K\w\w\w)", "abcdef")[0])
self.assertEqual("cde", regex.search(r"(\w\w\K\w\w\w)", "abcdef")[0])

0 comments on commit da72f66

Please sign in to comment.