Skip to content

Commit

Permalink
Merge pull request #246 from wdpypere/fix_deps
Browse files Browse the repository at this point in the history
some dependency fixes
  • Loading branch information
itkovian authored Oct 7, 2024
2 parents afc8788 + 98afd0a commit 53cf490
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/vsc/install/shared_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def _log(self, level, msg, args):

RELOAD_VSC_MODS = False

VERSION = '0.21.0'
VERSION = '0.21.1'

log.info('This is (based on) vsc.install.shared_setup %s', VERSION)
log.info('(using setuptools version %s located at %s)', setuptools.__version__, setuptools.__file__)
Expand Down Expand Up @@ -1554,6 +1554,7 @@ def parse_target(self, target, urltemplate=None):
'importlib-metadata < 5.0.0', # no longer compatible with python 3.7
'isort < 5.11.0',
'zipp < 3.16', # no longer compatible with python 3.6
'pyyaml < 6.0.2',
])

# tested for python 3.9
Expand All @@ -1569,6 +1570,7 @@ def parse_target(self, target, urltemplate=None):
'astroid <= 2.17.0-dev0',
'pycodestyle < 2.10',
'requirementslib < 2.3.1', # newer pulls in pydantic which doesn't do setup.py
'requirements_detector < 1.3', # newer pulls in astroid > 3
])

new_target['tests_require'] = tests_requires
Expand Down

0 comments on commit 53cf490

Please sign in to comment.