1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
language: python
python:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
install:
- pip install -e .
- pip install -r test_requirements.txt
script:
- sh util/test.sh
after_success:
- coveralls
deploy:
provider: pypi
user: Lucretiel
password:
secure: kLTVnrjyggnqaGnLAi5M02LDGIC/hfQmdFD+2onZVjRyj3EKYvZ/INz9NtIPgMo4ocixe59LPJI40nORm53ifPiKZs0HikRw7Z/ebzqDXsyShlP4alxd35jXglDV+dRF8yT86UxlLYaUWp5JYODcGKZuMpBGqxu6KD2apq1EILc=
on:
tags: true
python: '3.11'
distributions: sdist bdist_wheel
sudo: false
|