mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 21:18:32 +02:00
Appease the Travis gods
This commit is contained in:
parent
cab23ddc97
commit
b0f07eeb59
2 changed files with 7 additions and 4 deletions
|
@ -1,5 +1,4 @@
|
||||||
dist: xenial # required for Python >= 3.7
|
dist: xenial # required for Python >= 3.7
|
||||||
language: python
|
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
- name: "Python 3.6 on Linux"
|
- name: "Python 3.6 on Linux"
|
||||||
|
@ -8,26 +7,30 @@ jobs:
|
||||||
python: 3.7
|
python: 3.7
|
||||||
- name: "Python 3.8 on Linux"
|
- name: "Python 3.8 on Linux"
|
||||||
python: 3.8
|
python: 3.8
|
||||||
- name: "Python, developmental version, on Linux"
|
- name: "Python dev on Linux"
|
||||||
python: nightly
|
python: nightly
|
||||||
- name: "Python 3.7.4 on MacOS"
|
- name: "Python 3.7.4 on MacOS"
|
||||||
os: osx
|
os: osx
|
||||||
osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4
|
osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4
|
||||||
language: shell # 'language: python' is an error on Travis CI macOS
|
language: shell # 'language: python' is an error on Travis CI macOS
|
||||||
|
before_install:
|
||||||
|
- pip3 install poetry~=0.12.17
|
||||||
- name: "Python 3.8.0 on Windows"
|
- name: "Python 3.8.0 on Windows"
|
||||||
os: windows
|
os: windows
|
||||||
langage: shell # 'language: python' is an error on Travis CI Windows
|
langage: shell # 'language: python' is an error on Travis CI Windows
|
||||||
before_install:
|
before_install:
|
||||||
- choco install python --version 3.8.0
|
- choco install python --version 3.8.0
|
||||||
- python -m pip install --upgrade pip
|
- python -m pip install --upgrade pip
|
||||||
|
- pip install poetry~=0.12.17
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- python: 3.8
|
- python: 3.8
|
||||||
- python: nightly
|
- python: nightly
|
||||||
git:
|
git:
|
||||||
depth: false
|
depth: false
|
||||||
cache: pip
|
cache: pip
|
||||||
install:
|
before_install:
|
||||||
- pip install poetry~=0.12.17
|
- pip install poetry~=0.12.17
|
||||||
|
install:
|
||||||
# we run `poetry version` here to appease poetry about '0.0.0-source'
|
# we run `poetry version` here to appease poetry about '0.0.0-source'
|
||||||
- poetry version
|
- poetry version
|
||||||
- poetry install
|
- poetry install
|
||||||
|
|
|
@ -13,7 +13,7 @@ homepage = "https://jrnl.sh"
|
||||||
repository = "https://github.com/jrnl-org/jrnl"
|
repository = "https://github.com/jrnl-org/jrnl"
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = ">=3.6.0, <3.8.0"
|
python = ">=3.6.0, <3.9.0"
|
||||||
pyxdg = "^0.26.0"
|
pyxdg = "^0.26.0"
|
||||||
cryptography = "^2.7"
|
cryptography = "^2.7"
|
||||||
passlib = "^1.7"
|
passlib = "^1.7"
|
||||||
|
|
Loading…
Add table
Reference in a new issue