Skip to content

Commit

Permalink
Merge branch 'master' into midnight
Browse files Browse the repository at this point in the history
  • Loading branch information
serhii73 committed Nov 17, 2022
2 parents a421daf + 122037f commit b3c6172
Show file tree
Hide file tree
Showing 691 changed files with 41,008 additions and 61,501 deletions.
2 changes: 0 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,3 @@ end_of_line = crlf
[LICENSE]
insert_final_newline = false

[Makefile]
indent_style = tab
55 changes: 55 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python-version: 3.8
env:
TOXENV: flake8
- python-version: 3.7
env:
TOXENV: py
- python-version: 3.8
env:
TOXENV: py
- python-version: 3.9
env:
TOXENV: py
- python-version: "3.10"
env:
TOXENV: py
- python-version: "3.10"
env:
TOXENV: latest
- python-version: "3.11"
env:
TOXENV: py
- python-version: "3.11"
env:
TOXENV: latest
steps:
- uses: actions/checkout@v3
- name: 'Set up Python ${{ matrix.python-version }}'
uses: actions/setup-python@v4
with:
python-version: '${{ matrix.python-version }}'
- name: Install language-pack-fr
run: sudo apt-get update && sudo apt-get install language-pack-fr
- name: Install python dependencies
run: pip install tox
- name: tox
run: tox -e py
- name: Upload coverage.xml to codecov
if: ${{ matrix.python-version == '3.9' && matrix.env.TOXENV == 'latest'}}
uses: codecov/codecov-action@v3
27 changes: 27 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Upload Python Package

on:
release:
types: [created]

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
10 changes: 8 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
*.py[cod]
.python-version

# C extensions
*.so

# Packages
*.egg
*.eggs
*.egg-info
dist
build
Expand All @@ -26,6 +28,7 @@ pip-log.txt
.tox
nosetests.xml
htmlcov
coverage.xml

# Translations
*.mo
Expand All @@ -42,7 +45,10 @@ output/*/index.html
# Sphinx
docs/_build

# Vim temp files
# Editors
*.swp

.idea
.vscode/

# Other
raw_data
47 changes: 0 additions & 47 deletions .travis.yml

This file was deleted.

81 changes: 11 additions & 70 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,75 +2,16 @@
Credits
=======

Currently, more than 100 committers have contributed to this project, making this
contributors list really hard to maintain, so we have decided to stop updating
this list.

Committers
----------
To see the people behind this code, you can run ``git shortlog -s -n`` or visit the
contributions section in Github: https://github.com/scrapinghub/dateparser/graphs/contributors

* Adam LeVasseur
* Ahmad Musaffa
* Alec Koumjian
* Alexis Svinartchouk
* Ammar Azif
* Andrés Portillo
* Andrey Zhelnin
* Andrey Rahmatullin
* Artur Sadurski
* Artur Gaspar
* atchoum31
* Benjamin Bach
* Bruno Alla
* Cesar Flores
* CJStuart
* Claudio Salazar
* conanca
* David Beitey
* Dawid Wolski
* demelziraptor
* Edwin Zhang
* Elena Zakharova
* Elias Dorneles
* Eugene Amirov
* Faisal Anees
* Fernando Tricas García
* Georgi Valkov
* Hristo Vrigazov
* ishirav
* Ismael Carnales
* James M. Allen
* Ján Jančár
* Jolo Balbin
* Joseph Kahn
* Konstantin Lopuhin
* Mark Baas
* Marko Horvatić
* Mateusz Golewski
* Mats Gustafsson
* Michael Palumbo
* msopko81
* nanolab
* Opp Lieamsiriwong
* Paul Tremberth
* Pengyu Chen
* phuslu
* Rajat Goyal
* Raul Gallegos
* Renne Rocha
* Robert Schütz
* Roman
* Sakari Vaelma
* samoylovfp
* Sarthak Madaan
* Shuai Lin
* Sigit Dewanto
* Sinan Nalkaya
* Sviatoslav Sydorenko
* Taito Horiuchi
* Takahiro Kamatani
* Thomas Steinacher
* Timothy Allen
* tkisme
* Tom Russell
* Umair Ashraf
* Waqas Shabir
* Xavier Barbosa
* Yongwen Zhuang
We really appreciate **all the people that has contributed to this project with their
time and ideas**. Special mention to **Waqas Shabir** (waqasshabbir), **Eugene Amirov**
(Allactaga) and **Artur Sadurski** (asadurski) for creating and maintaining this awesome
project.

To all of you... thank you for building and improving this!

0 comments on commit b3c6172

Please sign in to comment.