mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-02-07 12:50:32 +03:00
Build packages for Python 3.11
This commit is contained in:
parent
271dd1fce7
commit
12700a5f02
4
.github/workflows/packages.yml
vendored
4
.github/workflows/packages.yml
vendored
|
@ -79,7 +79,7 @@ jobs:
|
||||||
docker run --rm
|
docker run --rm
|
||||||
-e PLAT=${{ matrix.tag }}_${{ matrix.arch }}
|
-e PLAT=${{ matrix.tag }}_${{ matrix.arch }}
|
||||||
-e PACKAGE_NAME=psycopg2-binary
|
-e PACKAGE_NAME=psycopg2-binary
|
||||||
-e PYVERS="cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310"
|
-e PYVERS="cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311"
|
||||||
-e PSYCOPG2_TESTDB=postgres
|
-e PSYCOPG2_TESTDB=postgres
|
||||||
-e PSYCOPG2_TESTDB_HOST=172.17.0.1
|
-e PSYCOPG2_TESTDB_HOST=172.17.0.1
|
||||||
-e PSYCOPG2_TESTDB_USER=postgres
|
-e PSYCOPG2_TESTDB_USER=postgres
|
||||||
|
@ -117,7 +117,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
|
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repos
|
- name: Checkout repos
|
||||||
|
|
6
.github/workflows/tests.yml
vendored
6
.github/workflows/tests.yml
vendored
|
@ -18,15 +18,15 @@ jobs:
|
||||||
- {python: "3.8", postgres: "12"}
|
- {python: "3.8", postgres: "12"}
|
||||||
- {python: "3.9", postgres: "13"}
|
- {python: "3.9", postgres: "13"}
|
||||||
- {python: "3.10", postgres: "14"}
|
- {python: "3.10", postgres: "14"}
|
||||||
- {python: "3.11-dev", postgres: "15rc1"}
|
- {python: "3.11", postgres: "15"}
|
||||||
|
|
||||||
# Opposite extremes of the supported Py/PG range, other architecture
|
# Opposite extremes of the supported Py/PG range, other architecture
|
||||||
- {python: "3.6", postgres: "15rc1", architecture: "x86"}
|
- {python: "3.6", postgres: "15", architecture: "x86"}
|
||||||
- {python: "3.7", postgres: "14", architecture: "x86"}
|
- {python: "3.7", postgres: "14", architecture: "x86"}
|
||||||
- {python: "3.8", postgres: "13", architecture: "x86"}
|
- {python: "3.8", postgres: "13", architecture: "x86"}
|
||||||
- {python: "3.9", postgres: "12", architecture: "x86"}
|
- {python: "3.9", postgres: "12", architecture: "x86"}
|
||||||
- {python: "3.10", postgres: "11", architecture: "x86"}
|
- {python: "3.10", postgres: "11", architecture: "x86"}
|
||||||
- {python: "3.11-dev", postgres: "10", architecture: "x86"}
|
- {python: "3.11", postgres: "10", architecture: "x86"}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PSYCOPG2_TESTDB: postgres
|
PSYCOPG2_TESTDB: postgres
|
||||||
|
|
6
NEWS
6
NEWS
|
@ -1,6 +1,12 @@
|
||||||
Current release
|
Current release
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
|
What's new in psycopg 2.9.5
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
- Add support for Python 3.11.
|
||||||
|
|
||||||
|
|
||||||
What's new in psycopg 2.9.4
|
What's new in psycopg 2.9.4
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
|
|
@ -131,7 +131,7 @@ The current `!psycopg2` implementation supports:
|
||||||
..
|
..
|
||||||
NOTE: keep consistent with setup.py and the /features/ page.
|
NOTE: keep consistent with setup.py and the /features/ page.
|
||||||
|
|
||||||
- Python versions from 3.6 to 3.10
|
- Python versions from 3.6 to 3.11
|
||||||
- PostgreSQL server versions from 7.4 to 15
|
- PostgreSQL server versions from 7.4 to 15
|
||||||
- PostgreSQL client library version from 9.1
|
- PostgreSQL client library version from 9.1
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
python_versions="3.8.10 3.9.13 3.10.5"
|
python_versions="3.8.10 3.9.13 3.10.5 3.11"
|
||||||
postgres_version=14
|
postgres_version=14
|
||||||
|
|
||||||
# Move to the root of the project
|
# Move to the root of the project
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -60,6 +60,7 @@ Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
Programming Language :: Python :: 3.11
|
||||||
Programming Language :: Python :: 3 :: Only
|
Programming Language :: Python :: 3 :: Only
|
||||||
Programming Language :: Python :: Implementation :: CPython
|
Programming Language :: Python :: Implementation :: CPython
|
||||||
Programming Language :: C
|
Programming Language :: C
|
||||||
|
|
Loading…
Reference in New Issue
Block a user