Skip to content

Commit

Permalink
Fix PyPI installation
Browse files Browse the repository at this point in the history
It failed with:

    ERROR: Packages installed from PyPI cannot depend on packages which
    are not also hosted on PyPI.
  • Loading branch information
mherrmann committed Jul 31, 2023
1 parent c51161f commit 821b16c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
author = 'Michael Herrmann'

# Also update ../setup.py when you change this:
release = '3.2.3'
release = '3.2.4'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ selenium==3.141.0
# Selenium 3 is incompatible with urllib3 >= 2:
urllib3<2

webdriver-manager @ git+https://github.com/mherrmann/webdriver_manager@615a6f8589bbb902664d409de566da173b2260ae
webdriver-manager==4.0.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name = 'helium',
# Also update docs/conf.py when you change this:
version = '3.2.3',
version = '3.2.4',
author = 'Michael Herrmann',
author_email = '[email protected]',
description = 'Lighter browser automation based on Selenium.',
Expand All @@ -16,7 +16,7 @@
'selenium==3.141.0',
# Selenium 3 is incompatible with urllib3 >= 2:
'urllib3<2',
'webdriver-manager @ git+https://github.com/mherrmann/webdriver_manager@615a6f8589bbb902664d409de566da173b2260ae'
'webdriver-manager==4.0.0'
],
package_data = {
'helium._impl': ['webdrivers/**/*']
Expand Down

0 comments on commit 821b16c

Please sign in to comment.