Skip to content

Commit

Permalink
Deploy Travis CI build 1382 to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
travis-ci committed Sep 18, 2022
1 parent 89fa631 commit d577c64
Show file tree
Hide file tree
Showing 4 changed files with 96 additions and 66 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ install:
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%\Scripts;%PATH%
# Install system dependencies
- curl -sSL https://install.python-poetry.org | python -
- set PATH=C:\Users\appveyor\AppData\Roaming\Python\Scripts;%PATH%
- set PATH=%USERPROFILE%\AppData\Roaming\Python\Scripts;%PATH%
- make doctor
# Install project dependencies
- make install
Expand Down
10 changes: 5 additions & 5 deletions demo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from pkg_resources import DistributionNotFound, get_distribution
from importlib.metadata import PackageNotFoundError, version

try:
__version__ = get_distribution("TemplateDemo").version
except DistributionNotFound:
__version__ = version("TemplateDemo")
except PackageNotFoundError:
__version__ = "(local)"

del DistributionNotFound
del get_distribution
del PackageNotFoundError
del version
6 changes: 3 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mkdocs==1.3.1; python_version >= "3.6"
pygments==2.13.0; python_version >= "3.6"
jinja2==3.1.2; python_version >= "3.7"
mkdocs==1.3.1 ; python_version >= "3.9" and python_version < "4.0"
pygments==2.13.0 ; python_version >= "3.9" and python_version < "4.0"
jinja2==3.1.2 ; python_version >= "3.9" and python_version < "4.0"

0 comments on commit d577c64

Please sign in to comment.