Skip to content

Commit

Permalink
Attempt some github actions cleanups.
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Oct 15, 2024
1 parent 2574b99 commit 7805ba9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,23 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.11"]
python-version: [3.8, 3.9, "3.11", "3.13"]
peewee-backend:
- "sqlite"
- "postgresql"
- "mysql"
exclude:
- python-version: 2.7
peewee-backend: postgresql
- python-version: "3.13"
peewee-backend: postgresql
include:
- python-version: 3.8
peewee-backend: cockroachdb
- python-version: "3.11"
peewee-backend: cockroachdb
- python-version: "3.11"
peewee-backend: psycopg3
- python-version: "3.13"
peewee-backend: psycopg3
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand All @@ -50,15 +52,9 @@ jobs:
PGHOST: 127.0.0.1
PGPASSWORD: peewee
run: |
pip install psycopg2-binary cython pymysql 'apsw' mysql-connector
pip install setuptools psycopg2-binary cython pymysql 'apsw' mysql-connector sqlcipher3-binary 'psycopg[binary]' pysqlite3-binary
python setup.py build_ext -i
psql peewee_test -c 'CREATE EXTENSION hstore;'
- name: sqlcipher
if: ${{ matrix.python-version != 2.7 }}
run: pip install sqlcipher3-binary
- name: psycopg3
if: ${{ matrix.python-version != 2.7 }}
run: pip install 'psycopg[binary]'
- name: crdb
if: ${{ matrix.peewee-backend == 'cockroachdb' }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def _do_setup(c_extensions, sqlite_extensions):
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
#'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.13',
#'Programming Language :: Python :: 3.14',
#'Programming Language :: Python :: 3.15',
#'Programming Language :: Python :: 999.99',
Expand Down

0 comments on commit 7805ba9

Please sign in to comment.