Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modernise the project scaffolding #252

Draft
wants to merge 12 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: CI
on:
pull_request:
push:
branches: [master]

jobs:
tests:
name: tests / ${{ matrix.os }} / ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest

strategy:
matrix:
os: [Windows, Ubuntu, MacOS]
python-version: [3.6, 3.7, 3.8, 3.9]
include:
# Only run PyPy jobs, on Ubuntu.
- os: Ubuntu
python-version: pypy3

steps:
- uses: actions/checkout@v2

# Get Python to test against
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

# Setup pip's cache
- name: Save date (for cache)
id: date
run: echo "::set-output name=date::$(date +%F)"
- name: Save pip cache dir
id: pip-cache-dir
run: echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v1
with:
path: ${{ steps.pip-cache-dir.outputs.dir }}
key: pip-v1-${{ runner.os }}-${{ steps.date.outputs.date }}
restore-keys: pip-v1-${{ runner.os }}

- run: pip install nox
- run: nox -s test-${{ matrix.python-version }}
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ Changelog

The full list of changes between each Python LiveReload release.

Version 3.0.0
-------------

*unreleased*

1. Drop support for Python < 3.6.


Version 2.6.3
-------------

Expand Down
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Copyright (c) 2021, Pradyun Gedam <[email protected]>
Copyright (c) 2012-2015, Hsiaoming Yang <[email protected]>

Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 0 additions & 3 deletions MANIFEST.in

This file was deleted.

28 changes: 0 additions & 28 deletions Makefile

This file was deleted.

155 changes: 0 additions & 155 deletions docs/Makefile

This file was deleted.

3 changes: 0 additions & 3 deletions docs/_templates/sidebarintro.html

This file was deleted.

1 change: 0 additions & 1 deletion docs/_themes
Submodule _themes deleted from 6298bd
Loading