Skip to content

Commit

Permalink
Remove requirement on pyramid 2.x
Browse files Browse the repository at this point in the history
It appears that we don't actually need pyramid 2.x except for the
"official" support designation.

* 3.10 support was added in a no-op PR:
  https://www.github.com/Pylons/pyramid/pull/3689

* 3.11 support was added in a PR which removed the ldgettext and
  ldngettext functions:
  https://www.github.com/Pylons/pyramid/pull/3717
  (We don't use these functions in any of our codebases.)

* 3.12 support is being added in a no-op PR:
  https://www.github.com/Pylons/pyramid/pull/3737

As such, I believe we can get away with still using pyramid 1.x with
3.10/3.11/3.12.
  • Loading branch information
chriskuehl committed Jan 22, 2024
1 parent dc6b855 commit ee577cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements-transitive.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Pygments==2.7.4
pymemcache==1.4.3
pyOpenSSL==23.0.0
pyparsing==2.4.7
pyramid==2.0.2
pyramid==1.10.8
python-dateutil==2.8.2
python-json-logger==2.0.7
PyYAML==6.0.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"kafka": ["confluent-kafka>=2.3.0"],
"memcache": ["pymemcache>=1.3.0,<1.4.4"],
"prometheus": ["prometheus-client>=0.12.0,<1.0"],
"pyramid": ["pyramid>=2.0.1"],
"pyramid": ["pyramid>=1.9.0,<2.0"],
"redis": ["redis>=2.10.0,<4.0.0"],
"redis-py-cluster": ["redis-py-cluster>=2.1.2,<3.0.0"],
"refcycle": ["objgraph>=3.6.0"],
Expand Down

0 comments on commit ee577cc

Please sign in to comment.