Skip to content

Commit

Permalink
Remove blank versions from setup.py (#176)
Browse files Browse the repository at this point in the history
In Python 3.8 this blank version value causes setuptools to throw an error

> setuptools.extern.packaging.version.InvalidVersion: Invalid version: ''
  • Loading branch information
adrianclay authored Aug 9, 2024
1 parent bb31a39 commit 4812277
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion common/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

setup(
name='integration-adaptors-common',
version='',
packages=find_packages(),
url='https://github.com/nhsconnect/integration-adaptor-common',
license='',
Expand Down
1 change: 0 additions & 1 deletion examples/SCR/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

setup(
name='scr',
version='',
packages=setuptools.find_packages(),
url='',
license='',
Expand Down
1 change: 0 additions & 1 deletion mhs/common/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

setup(
name='mhs-common',
version='',
packages=setuptools.find_packages(),
url='',
license='',
Expand Down

0 comments on commit 4812277

Please sign in to comment.