Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
0b893ae
update: bump version to 2.7.0 and add new data directories for MTSDia…
chakravarthik27 Sep 12, 2025
576dc0f
updated: free up additional disk space by removing cached files in bu…
chakravarthik27 Sep 15, 2025
a154804
updated: refine disk space cleanup by removing specific log files in …
chakravarthik27 Sep 15, 2025
6d31bef
updated: change build job to run on both ubuntu-latest and self-hoste…
chakravarthik27 Sep 15, 2025
fb107ca
updated: change build job to run on macos-latest instead of ubuntu-la…
chakravarthik27 Sep 15, 2025
87def83
updated: change build job to run on ubuntu-latest instead of macos-la…
chakravarthik27 Sep 15, 2025
ac2b8c4
refine disk space cleanup by removing specific log files and simplify…
chakravarthik27 Sep 15, 2025
7c6e135
update: change logo image source and add old logo for reference
chakravarthik27 Sep 16, 2025
dce5de5
update: change poetry version to 2.1.3 in release workflow
chakravarthik27 Sep 16, 2025
c3bbb8d
refine: suppress output during poetry dependency installation
chakravarthik27 Sep 16, 2025
625c5f5
refine: enhance poetry installation command for improved output handling
chakravarthik27 Sep 16, 2025
fcb3e92
refine: enhance disk space cleanup by removing additional directories
chakravarthik27 Sep 16, 2025
e948889
refine: update footer content with new copyright and policy links
chakravarthik27 Sep 18, 2025
d0548a6
updated: replace the githhub links with pacific-ai
chakravarthik27 Sep 18, 2025
2c1a482
updated: replaced the links with pacific.ai
chakravarthik27 Sep 18, 2025
7ad73cf
updated: links in the header and footer
chakravarthik27 Sep 18, 2025
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
6 changes: 4 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
run: |
sudo apt clean
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
df -h

- uses: actions/checkout@v3
Expand All @@ -50,8 +52,8 @@ jobs:
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
poetry cache clear pypi --all -n
poetry install --with dev --all-extras --no-cache
poetry cache clear pypi --all -n > /dev/null
poetry install --with dev --all-extras --no-cache --quiet --no-interaction
source ./.venv/bin/activate && pip uninstall -y pyspark && rm -rf ./.venv/lib/python${{ matrix.python-version }}/site-packages/pyspark*/
pip install pyspark==3.5.6

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
python-version: [3.9]
poetry-version: [1.3.1]
poetry-version: [2.1.3]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="https://raw.githubusercontent.com/JohnSnowLabs/langtest/main/docs/assets/images/langtest/langtest_logo.png" alt="johnsnowlabs_logo" width="360" style="text-align:center;">
<img src="https://raw.githubusercontent.com/Pacific-AI-Corp/langtest/main/docs/assets/images/langtest/langtest_logo.png" alt="pacific_ai_logo" width="360" style="text-align:center;">
</p>

<div align="center">
Expand Down
Binary file modified docs/assets/images/langtest/langtest_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/langtest/langtest_logo_old.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langtest"
version = "2.6.0"
version = "2.7.0"
description = "Pacific AI provides a library for delivering safe & effective NLP models."
authors = ["Pacific AI <support@johnsnowlabs.com>"]
readme = "README.md"
Expand Down Expand Up @@ -130,7 +130,7 @@ lint = "pflake8 langtest/"
format = "black langtest/ tests/"
check-docstrings = "pydocstyle langtest/ --add-select=D417 --add-ignore=D100,D104,D105,D400,D415 --convention=google"
is-formatted = "black --check langtest/ tests/"
force-cpu-torch = "echo $(java -version) && pip cache purge && echo $(df -h) && echo $(pip show torch)"
force-cpu-torch = "pip cache purge"
extra-lib = "python -m pip install openpyxl tables"


Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,8 @@
"data/BSS/*",
"data/resources/*",
"data/DrugSwap/*",
"data/MTSDialog/*",
"data/ACIBench/*",
],
},
# Although 'package_data' is the preferred approach, in some case you may
Expand Down