Skip to content

Commit 3156189

Browse files
adding of support for Python 3.14 (#736)
* naive adding of support for Python 3.14 * trigger tests. * Run on 3.14 as latest version. --------- Co-authored-by: JoeZiminski <joseph.j.ziminski@gmail.com>
1 parent 94a5d43 commit 3156189

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/code_test_and_deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jobs:
4545
&& '["ubuntu-latest","windows-latest","macos-14","macos-15-intel"]'
4646
|| '["ubuntu-latest","windows-latest","macos-latest"]') }}
4747
python-version: ${{ fromJson(github.event_name == 'schedule'
48-
&& '["3.9","3.10","3.11","3.12","3.13"]'
49-
|| '["3.9","3.13"]') }}
48+
&& '["3.9","3.10","3.11","3.12","3.13","3.14"]'
49+
|| '["3.9","3.14"]') }}
5050

5151
steps:
5252
- uses: actions/checkout@v6

datashuttle/utils/folders.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -646,13 +646,13 @@ def get_datetime_to_search_regexp(format_type: str, tag: str) -> str:
646646
647647
"""
648648
if format_type == "date":
649-
regexp = "\d{8}"
649+
regexp = "\\d{8}"
650650

651651
elif format_type == "time":
652-
regexp = "\d{6}"
652+
regexp = "\\d{6}"
653653

654654
elif format_type == "datetime":
655-
regexp = "\d{8}T\d{6}"
655+
regexp = "\\d{8}T\\d{6}"
656656

657657
full_tag_regex = rf"({regexp}){re.escape(tag)}({regexp})"
658658

0 commit comments

Comments
 (0)