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 3939
4040import textwrap
4141import re
42- from distutils . version import LooseVersion
42+ from looseversion import LooseVersion
4343import os
4444import glob
4545import subprocess
@@ -621,7 +621,7 @@ def read_github_creds(github_token_file):
621621 Read the GitHub token from the specified file and return it as a string.
622622 """
623623
624- token_re = re .compile ('^(?:Token - )?(?P<tok>\w{40}).*$' )
624+ token_re = re .compile (r '^(?:Token - )?(?P<tok>\w{40}).*$' )
625625 github_token = None
626626
627627 with open (github_token_file , 'rb' ) as token_stream :
Original file line number Diff line number Diff line change 22name = " mongo-cxx-driver"
33version = " 0.1.0"
44description = " For development only."
5- requires-python = " >=3.10,<3.12 "
5+ requires-python = " >=3.10"
66dependencies = []
77
88[dependency-groups ]
@@ -35,7 +35,7 @@ config_generator = [
3535]
3636
3737make_release = [
38- # etc/make_release.py (requires python<3.12)
38+ # etc/make_release.py
3939 " click>=6.0" ,
4040 " gitpython>=3.1" ,
4141 " jira>=3.1" ,
You can’t perform that action at this time.
0 commit comments