Skip to content

Commit

Permalink
Update .cirrus.yml and README.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
duckinator committed Nov 20, 2023
1 parent 73469bd commit 5f45605
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Lint_task:
container:
image: python:3.11-slim
install_script:
- pip install -U --upgrade-strategy eager pip 'setuptools>61'
- pip install -U pip
- pip install .
- pip install .[lint] .[test]
script:
Expand All @@ -20,7 +20,7 @@ Linux_task:
install_script:
- apt-get update
- apt-get install -y git
- pip install -U --upgrade-strategy eager pip 'setuptools>61'
- pip install -U pip
- pip install . .[test]
script:
- python3 --version
Expand Down Expand Up @@ -51,7 +51,7 @@ macOS_task:
- pyenv global ${PYTHON}
- pyenv rehash
pip_install_script:
- pip install -U --upgrade-strategy eager pip 'setuptools>61'
- pip install -U pip
- pip install .[test]
script:
- python3 --version
Expand All @@ -77,7 +77,7 @@ FreeBSD_task:
- pkg install -y python${PY} git
- python${PYTHON} -m ensurepip
pip_install_script:
- python${PYTHON} -m pip install -U --upgrade-strategy eager pip 'setuptools>61'
- python${PYTHON} -m pip install -U pip
- python${PYTHON} -m pip install .[test]
script:
- python${PYTHON} --version
Expand All @@ -102,7 +102,7 @@ Windows_task:
- ps: Invoke-WebRequest -Uri https://www.python.org/ftp/python/${env:PYTHON}/python-${env:PYTHON}-amd64.exe -OutFile C:\python-installer.exe
- C:\python-installer.exe /quiet TargetDir=C:\Python SimpleInstall=1
install_script:
- C:\Python\python.exe -m pip install -U --upgrade-strategy eager pip "setuptools>61"
- C:\Python\python.exe -m pip install -U pip
- C:\Python\python.exe -m pip install .[test]
version_info_script:
- C:\Python\python.exe --version
Expand Down Expand Up @@ -131,13 +131,13 @@ Release_task:
env:
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ENCRYPTED[...]
BORK_GITHUB_TOKEN: ENCRYPTED[...]
BORK_GITHUB_TOKEN: ENCRYPTED[e67bc3aec2f14be284e1646e19eb6054ec29046c56f678b636d84771695f6d77cf4766a3dea6c2c3499dbec9eb5e0b02]
container:
image: python:3.11-slim
install_script:
- apt-get update
- apt-get install -y git
- pip install -U --upgrade-strategy eager pip 'setuptools>61'
- pip install -U pip
- pip3 install . .[test]
build_script:
- bork clean
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,10 @@ homf requires Python 3.8 or newer.

[docs-img]: https://readthedocs.org/projects/homf/badge/?version=latest
[docs-link]: https://homf.readthedocs.io/en/latest/?badge=latest


## Contributing

Bug reports and pull requests are welcome on GitHub at <https://github.com/duckinator/homf>.

The code for Bork is available under the [MIT License](http://opensource.org/licenses/MIT).

0 comments on commit 5f45605

Please sign in to comment.