Skip to content

Commit

Permalink
Merge branch 'kennethreitz:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
wisdark authored Jul 6, 2024
2 parents 59bda18 + ed1e5ad commit b049f83
Show file tree
Hide file tree
Showing 11 changed files with 349 additions and 315 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
custom: ['https://cash.app/$KR424']
github: kennethreitz
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: pytest

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}


- name: Install dependencies
run: pip install -r requirements.txt

- name: Test with pytest
run: pytest
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
v0.6.0 (04-29-2024)
===================

- Support for Python 3.6+ only.
- Support for SQLAlchemy 2+.
- Dropped support for Python 2.7 and 3.4, with the move to SQLAlchemy 2+.

v0.5.1 (09-01-2017)
===================

Expand Down
9 changes: 0 additions & 9 deletions Pipfile

This file was deleted.

182 changes: 0 additions & 182 deletions Pipfile.lock

This file was deleted.

Loading

0 comments on commit b049f83

Please sign in to comment.