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
1 change: 0 additions & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
publish:
runs-on: windows-latest
env:
SETUPTOOLS_USE_DISTUTILS: stdlib
INVOKE_IS_CI_CD: 1
steps:
- uses: actions/checkout@v5
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,11 @@ jobs:
- name: "macos-py311"
python: "3.11"
os: macos-latest
- name: "ubuntu-py314"
python: "3.14"
os: ubuntu-latest

env:
SETUPTOOLS_USE_DISTUTILS: stdlib
INVOKE_IS_CI_CD: 1
HUBSPOT_TOKEN: ${{ secrets.HUBSPOT_TOKEN }}
SYSTEM_VERSION_COMPAT: "0"
Expand Down
6 changes: 4 additions & 2 deletions packages/main/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "A collection of tools and libraries for RPA"
authors = [{name = "RPA Framework", email = "rpafw@robocorp.com"}]
license = {text = "Apache-2.0"}
readme = "README.rst"
requires-python = ">=3.10,<3.14"
requires-python = ">=3.10"

keywords = ["robotframework", "rpa", "automation"]
classifiers = [
Expand All @@ -20,6 +20,8 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]

dependencies = [
Expand Down Expand Up @@ -119,4 +121,4 @@ include = ["src/tests"]

[tool.pytest.ini_options]
addopts = "-v --cov=src --cov-branch"
testpaths = ["tests/python"]
testpaths = ["tests/python"]
Loading