Skip to content

Commit

Permalink
Improvements for build (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov authored Dec 7, 2024
1 parent 66c96cc commit ece1965
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,8 @@ jobs:
env:
PIP_EXTRA_INDEX_URL: "https://download.pytorch.org/whl/cpu"

- name: Tokenizers regression tests (using openvino python modules)
- name: Tokenizers regression tests (using openvino python wheels)
run: |
source ${INSTALL_DIR}/setupvars.sh
python3 -m pytest layer_tests.py
python3 -m pytest tokenizers_test.py
working-directory: ${{ env.OPENVINO_TOKENIZERS_REPO }}/tests
Expand Down
21 changes: 17 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,37 @@ name = "openvino-tokenizers"
version = "2025.0.0.0"
description = "Convert tokenizers into OpenVINO models"
requires-python = ">=3.9"
readme = {file = "README.md", content-type="text/markdown"}
license = {text = "OSI Approved :: Apache Software License"}
readme = { file = "README.md", content-type="text/markdown" }
license = { "file" = "LICENSE" }

authors = [
{ name = "OpenVINO Developers", email = "[email protected]" },
]

classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: C++",
"Programming Language :: C",
"Programming Language :: Python :: 3 :: Only",
]

dependencies = [
# support of nightly openvino packages with dev suffix
"openvino~=2025.0.0.0.dev"
"openvino~=2025.0.0.dev"
]

[project.optional-dependencies]
Expand Down Expand Up @@ -106,6 +119,6 @@ python_abi = "none"
requires = [
"py-build-cmake==0.3.2",
"cmake~=3.14",
"openvino~=2025.0.0.0.dev"
"openvino~=2025.0.0.dev"
]
build-backend = "py_build_cmake.build"

0 comments on commit ece1965

Please sign in to comment.