Skip to content

Commit

Permalink
New version: 1.0.4 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusfelipeog committed Nov 8, 2022
2 parents a765de7 + 38fb5fa commit f122241
Show file tree
Hide file tree
Showing 52 changed files with 1,812 additions and 1,483 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,23 @@ name: Tests

on:
push:
branches: [ master ]
branches: [master, dev]
pull_request:
branches: [ master ]
branches: [master, dev]

jobs:
unittest:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
137 changes: 127 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,133 @@
# ignore environment directories
venv/
.vscode/

# Ignore cache of module importing
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Ignore credentials file
.pypirc
# C extensions
*.so

# Ignore files and directory of distribution
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
.pypirc

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# Ignore build directory
build/
# VSCode
.vscode
9 changes: 4 additions & 5 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ verify_ssl = true
name = "pypi"

[packages]
requests = "==2.24.0"
beautifulsoup4 = "==4.9.3"
colorama = "==0.4.4"
requests = ">=2.28.1"
beautifulsoup4 = ">=4.11.1"

[dev-packages]
pylint = "2.7.2"
sphinx = "3.5.2"
pylint = ">=2.15.5"
sphinx = ">=5.3.0"
sphinx-rtd-theme = "*"
sphinxcontrib-napoleon = "*"

Expand Down
Loading

0 comments on commit f122241

Please sign in to comment.