Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: France-Travail/words_n_fun
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.6.0
Choose a base ref
...
head repository: France-Travail/words_n_fun
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 5 commits
  • 6 files changed
  • 3 contributors

Commits on Oct 13, 2023

  1. Copy the full SHA
    c23b74f View commit details

Commits on May 7, 2024

  1. split_sentences: fix parenthesis management, more rules, tests (#33)

    * split_sentences: fix parenthesis, more rules, tests
    
    * bug . missing \
    
    * replace assert, formatting code
    dgarlor authored May 7, 2024
    Copy the full SHA
    5eb8ba7 View commit details
  2. Updated version

    gsolard committed May 7, 2024
    Copy the full SHA
    628b95d View commit details
  3. Copy the full SHA
    0e9e3f4 View commit details

Commits on Jun 11, 2024

  1. github group migration (#35)

    gsolard authored Jun 11, 2024
    Copy the full SHA
    3bf4b15 View commit details
Showing with 404 additions and 195 deletions.
  1. +1 −1 CODE_OF_CONDUCT.md
  2. +3 −3 README.md
  3. +1 −1 setup.py
  4. +308 −147 tests/test_8_split_sentences.py
  5. +1 −1 version.txt
  6. +90 −42 words_n_fun/preprocessing/split_sentences.py
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
oss@pole-emploi.fr.
oss.00619@pole-emploi.fr.
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![pypi badge](https://img.shields.io/pypi/v/words_n_fun.svg)](https://pypi.python.org/pypi/words_n_fun)
![WNF tests 3.9](https://github.com/OSS-Pole-Emploi/words_n_fun/actions/workflows/wnf_build_tests_less_than_39.yaml/badge.svg)
![WNF tests 3.10](https://github.com/OSS-Pole-Emploi/words_n_fun/actions/workflows/wnf_build_tests_more_than_310.yaml/badge.svg)
![WNF linter](https://github.com/OSS-Pole-Emploi/words_n_fun/actions/workflows/wnf_linter.yaml/badge.svg)
![WNF tests 3.9](https://github.com/France-Travail/words_n_fun/actions/workflows/wnf_build_tests_less_than_39.yaml/badge.svg)
![WNF tests 3.10](https://github.com/France-Travail/words_n_fun/actions/workflows/wnf_build_tests_more_than_310.yaml/badge.svg)
![WNF linter](https://github.com/France-Travail/words_n_fun/actions/workflows/wnf_linter.yaml/badge.svg)
[![License: AGPL v3](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)
[![Generic badge](https://img.shields.io/badge/python-3.8|3.9|3.10|3.11-blue.svg)](https://shields.io/)

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@
author="Agence Data Services PE Nantes",
author_email="contactadsaiframeworks.00619@pole-emploi.fr",
description="Semantic library of the Data Services agency",
url="https://github.com/OSS-Pole-Emploi/words_n_fun",
url="https://github.com/France-Travail/words_n_fun",
platforms=['windows', 'linux'],
python_requires='>=3.8',
package_data={
Loading