summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDick Marinus <dick@mrns.nl>2023-10-30 00:04:00 +0100
committerGitHub <noreply@github.com>2023-10-29 16:04:00 -0700
commit08cf5e720f4f442328228f2ea4ee29585f0a4fbd (patch)
tree850bdb80179c81ebf7e9b743d23af945c5562ecf
parent8c72820d7ec12b0518391f39153cff64e8b05dca (diff)
downgrade pendulum to released version (#1434)
* downgrade pendulum to released version * install beta version of pendulum for 3.12
-rw-r--r--.github/workflows/ci.yml4
-rw-r--r--changelog.rst8
-rw-r--r--setup.py2
3 files changed, 13 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d9698ef4..68a69acd 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -67,6 +67,10 @@ jobs:
psql -h localhost -U postgres -p 6432 pgbouncer -c 'show help'
+ - name: Install beta version of pendulum
+ run: pip install pendulum==3.0.0b1
+ if: matrix.python-version == '3.12'
+
- name: Install requirements
run: |
pip install -U pip setuptools
diff --git a/changelog.rst b/changelog.rst
index 5eb563e2..e4c3396e 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -4,6 +4,14 @@
Features:
---------
+* Allow stable version of pendulum
+
+==================
+4.0.0 (2023-11-27)
+==================
+
+Features:
+---------
* Ask for confirmation when quitting cli while a transaction is ongoing.
* New `destructive_statements_require_transaction` config option to refuse to execute a
diff --git a/setup.py b/setup.py
index 254b7218..9a398a48 100644
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ install_requirements = [
"psycopg >= 3.0.14",
"sqlparse >=0.3.0,<0.5",
"configobj >= 5.0.6",
- "pendulum>=3.0.0b1",
+ "pendulum>=2.1.0",
"cli_helpers[styles] >= 2.2.1",
]