Skip to content

Commit

Permalink
pypyr v5 + python 3.10
Browse files Browse the repository at this point in the history
pypyr v5 api upgrade to run()
Pipfile update Python runtime to py 3.10 and also unpin coverage dev dependency.
Update travis to py 3.10
  • Loading branch information
yaythomas committed Nov 21, 2021
1 parent 3325c7d commit 9e27619
Show file tree
Hide file tree
Showing 4 changed files with 624 additions and 590 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: python

python:
- "3.8"
- "3.10"

# command to install dependencies
install:
Expand Down
36 changes: 18 additions & 18 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,42 +4,42 @@ url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
black = "*"
coverage = "*"
coveralls = "*"
flake8 = "*"
gitpython = "*"
gunicorn = "*"
pytest = "*"
pytest-runner = "*"
black = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
coverage = "==4.5.4"
pytest-cov = "*"
pytest-runner = "*"
python-coveralls = "*"
coveralls = "*"
requests = "*"
rich = "*"
setuptools = "*"
wheel = "*"
twine = "*"
gunicorn = "*"
sqlalchemy = "*"
sphinx = "*"
sphinx-autobuild = "*"
rich = "*"
requests = "*"
gitpython = "*"
sphinx-rtd-theme = "*"
sqlalchemy = "*"
twine = "*"
wheel = "*"

[packages]
apscheduler = "*"
pytz = "*"
psutil = "*"
click = "*"
psutil = "*"
pypyr = ">=3.1"
pytz = "*"

[requires]
python_version = "3.8"
python_version = "3.10"

[scripts]
tests = "pytest tests"
server = "python -m pyrsched.server"
docs = "sphinx-build docs dist-docs"
docs-preview = "sphinx-autobuild docs dist-docs"
release = "python scripts/release.py"
server = "python -m pyrsched.server"
tests = "pytest tests"

[pipenv]
allow_prereleases = true
Loading

0 comments on commit 9e27619

Please sign in to comment.