Skip to content

Commit

Permalink
Merge pull request SergeyPirogov#484 from aleksandr-kotlyar/gh_483
Browse files Browse the repository at this point in the history
 gh SergeyPirogov#483 add python 3.11 support badge
  • Loading branch information
aleksandr-kotlyar authored Feb 12, 2023
2 parents d39033e + 44e484a commit 57257c3
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
os: [ windows-latest ]
wdm-log: ['']
include:
- python-version: '3.7'
selenium-version: '4.1.0'
- python-version: '3.11'
selenium-version: '4.6.0'
os: ubuntu-latest
- python-version: '3.10'
- python-version: '3.11'
selenium-version: '3.141.0'
os: macos-latest
wdm-log: '0'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_xdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
WDM_LOG: ${{ matrix.wdm-log }}
with:
run: |
pipenv run pytest -sv tests/xdist/ -n 2
pipenv run pytest -sv tests/xdist_/ -n 2
- name: List folders
run: ls -la ~/.wdm
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Changelog

---
##3.7.0

## 3.8.6
- Officially support python 3.11 (3.11.1+)

---
### 3.7.1-3.8.5 changelog TBD

---
## 3.7.0
- pytest-xdist support

## 3.6.2
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.8.5
current_version = 3.8.6
commit = True
tag = True

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=['tests']),
include_package_data=True,
version='3.8.5',
version='3.8.6',
description='Library provides the way to automatically manage drivers for different browsers',
author='Sergey Pirogov',
author_email='automationremarks@gmail.com',
Expand All @@ -37,6 +37,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: '
'Libraries :: Python Modules',
'Operating System :: Microsoft :: Windows',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ def test_can_download_chrome_driver(delete_drivers_dir, version):
file = download_manager.download_file(driver.get_url())
assert file.filename == "driver.zip"
archive = save_file(file, DEFAULT_PROJECT_ROOT_CACHE_PATH)
assert archive.unpack(DEFAULT_PROJECT_ROOT_CACHE_PATH) == ["chromedriver.exe"]
assert "chromedriver.exe" in archive.unpack(DEFAULT_PROJECT_ROOT_CACHE_PATH)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion webdriver_manager/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.8.5"
__version__ = "3.8.6"

0 comments on commit 57257c3

Please sign in to comment.