Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"

Expand All @@ -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]
Expand All @@ -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 = [
Expand Down