diff --git a/README.md b/README.md index 118d82a..b3090a4 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,13 @@ Robot Framework Library for creating and interacting with devices using various 1. Install via pip ```sh - pip install robotframework-devicelibrary[all] git+https://github.com/reubenmiller/robotframework-devicelibrary.git@0.24.4 + pip install robotframework-devicelibrary[all] git+https://github.com/reubenmiller/robotframework-devicelibrary.git@1.15.0 ``` Or add it to your `requirements.txt` file ```sh - robotframework-devicelibrary[all] @ git+https://github.com/reubenmiller/robotframework-devicelibrary.git@0.24.4 + robotframework-devicelibrary[all] @ git+https://github.com/reubenmiller/robotframework-devicelibrary.git@1.15.0 ``` Then install it via diff --git a/pyproject.toml b/pyproject.toml index 9539bdb..af625bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [build-system] requires = [ - "setuptools>=61", - "wheel", - "setuptools_scm>=6.2", + "setuptools>=75", + "wheel>=0.43.0", + "setuptools-scm[toml]>=8", ] build-backend = "setuptools.build_meta" @@ -13,17 +13,17 @@ write_to = "DeviceLibrary/_version.py" name = "robotframework-devicelibrary" description = "Robot Framework library for interfacing with Devices" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.10" keywords = ["testing"] -license = {text = "MIT"} +license = "MIT" classifiers = [ "Programming Language :: Python :: 3", ] dynamic = ["version"] dependencies = [ "robotframework >= 6.0.0, < 8.0.0", - "unidecode >= 1.3.6, < 2.0.0", - "device-test-core @ git+https://github.com/reubenmiller/device-test-core.git@1.14.2", + "unidecode >= 1.4.0, < 2.0.0", + "device-test-core @ git+https://github.com/reubenmiller/device-test-core.git@1.15.0", ] [project.optional-dependencies] @@ -33,13 +33,13 @@ all = [ "robotframework-devicelibrary[local]", ] ssh = [ - "device-test-core[ssh] @ git+https://github.com/reubenmiller/device-test-core.git@1.14.2", + "device-test-core[ssh] @ git+https://github.com/reubenmiller/device-test-core.git@1.15.0", ] local = [ - "device-test-core[local] @ git+https://github.com/reubenmiller/device-test-core.git@1.14.2", + "device-test-core[local] @ git+https://github.com/reubenmiller/device-test-core.git@1.15.0", ] docker = [ - "device-test-core[docker] @ git+https://github.com/reubenmiller/device-test-core.git@1.14.2", + "device-test-core[docker] @ git+https://github.com/reubenmiller/device-test-core.git@1.15.0", ] test = [