File tree Expand file tree Collapse file tree 3 files changed +431
-223
lines changed Expand file tree Collapse file tree 3 files changed +431
-223
lines changed Original file line number Diff line number Diff line change 39
39
40
40
import textwrap
41
41
import re
42
- from distutils . version import LooseVersion
42
+ from looseversion import LooseVersion
43
43
import os
44
44
import glob
45
45
import subprocess
@@ -621,7 +621,7 @@ def read_github_creds(github_token_file):
621
621
Read the GitHub token from the specified file and return it as a string.
622
622
"""
623
623
624
- token_re = re .compile ('^(?:Token - )?(?P<tok>\w{40}).*$' )
624
+ token_re = re .compile (r '^(?:Token - )?(?P<tok>\w{40}).*$' )
625
625
github_token = None
626
626
627
627
with open (github_token_file , 'rb' ) as token_stream :
Original file line number Diff line number Diff line change 2
2
name = " mongo-cxx-driver"
3
3
version = " 0.1.0"
4
4
description = " For development only."
5
- requires-python = " >=3.10,<3.12 "
5
+ requires-python = " >=3.10"
6
6
dependencies = []
7
7
8
8
[dependency-groups ]
@@ -35,7 +35,7 @@ config_generator = [
35
35
]
36
36
37
37
make_release = [
38
- # etc/make_release.py (requires python<3.12)
38
+ # etc/make_release.py
39
39
" click>=6.0" ,
40
40
" gitpython>=3.1" ,
41
41
" jira>=3.1" ,
You can’t perform that action at this time.
0 commit comments