File tree Expand file tree Collapse file tree 4 files changed +24
-22
lines changed
Expand file tree Collapse file tree 4 files changed +24
-22
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Gitman is a language-agnostic dependency manager using Git. It aims to serve as
1717
1818### Requirements
1919
20- - Python 3.8 +
20+ - Python 3.9 +
2121- Git 2.8+ (with [ stored credentials] ( http://gitman.readthedocs.io/en/latest/setup/git/ ) )
2222
2323### Installation
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ requests==2.32.5 ; python_version >= "3.9" and python_version < "4.0"
6565rope == 0.14.0 ; python_version >= "3.9" and python_version < "4.0"
6666ruamel-yaml-clib == 0.2.8 ; python_version >= "3.9" and python_version < "3.11" and platform_python_implementation == "CPython"
6767ruamel-yaml == 0.17.21 ; python_version >= "3.9" and python_version < "4.0"
68- setuptools == 70.0 .0 ; python_version >= "3.9" and python_version < "4.0"
68+ setuptools == 80.9 .0 ; python_version >= "3.9" and python_version < "4.0"
6969six == 1.16.0 ; python_version >= "3.9" and python_version < "4.0"
7070sly == 0.5 ; python_version >= "3.9" and python_version < "4.0"
7171sniffer == 0.4.1 ; python_version >= "3.9" and python_version < "4.0"
@@ -76,6 +76,6 @@ types-freezegun==1.1.10 ; python_version >= "3.9" and python_version < "4.0"
7676types-setuptools == 65.3.0 ; python_version >= "3.9" and python_version < "4.0"
7777typing-extensions == 4.3.0 ; python_version >= "3.9" and python_version < "4.0"
7878universal-startfile == 0.2 ; python_version >= "3.9" and python_version < "4.0"
79- urllib3 == 1.26.19 ; python_version >= "3.9" and python_version < "4.0"
79+ urllib3 == 2.5.0 ; python_version >= "3.9" and python_version < "4.0"
8080watchdog == 2.1.9 ; python_version >= "3.9" and python_version < "4.0"
8181zipp == 3.19.1 ; python_version >= "3.9" and python_version < "4.0"
Original file line number Diff line number Diff line change @@ -450,12 +450,8 @@ def find_nested_configs(
450450
451451
452452def _resolve_current_directory ():
453- start = os .getcwd ()
454- if sys .version_info < (3 , 8 ) and os .name == "nt" :
455- log .warn ("Python 3.8+ is required to resolve virtual drives on Windows" )
456- else :
457- start = os .path .realpath (start )
458- os .chdir (start )
453+ start = os .path .realpath (os .getcwd ())
454+ os .chdir (start )
459455 return start
460456
461457
You can’t perform that action at this time.
0 commit comments