Skip to content

Commit

Permalink
Plone 6.1 only
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed May 10, 2024
1 parent 73a34bb commit 3593e89
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup


version = "3.2.1.dev0"
version = "4.0.0.dev0"

short_description = (
"Dexterity is a content type framework for CMF applications, "
Expand All @@ -29,16 +29,15 @@
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 6.0",
"Framework :: Plone :: 6.1",
"Framework :: Plone :: Core",
"Framework :: Zope :: 5",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="plone ttw dexterity schema interface",
author="Martin Aspeli, David Glick, et al",
Expand All @@ -49,7 +48,7 @@
namespace_packages=["plone", "plone.app"],
include_package_data=True,
zip_safe=False,
python_requires=">=3.8",
python_requires=">=3.10",
install_requires=[
# Dexterity
"plone.app.textfield",
Expand All @@ -58,12 +57,12 @@
"plone.formwidget.namedfile",
"plone.namedfile>=1.0.0",
"plone.rfc822",
"plone.schemaeditor >1.3.3",
"plone.schemaeditor>1.3.3",
# Plone/Zope core
"lxml",
"plone.base",
"plone.app.uuid",
"plone.app.z3cform>=1.1.0",
"plone.app.z3cform>=4.6.0",
"plone.autoform>=1.1",
"plone.contentrules",
"plone.portlets",
Expand Down
16 changes: 8 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ set_env =
##
deps =
zope.testrunner
-c https://dist.plone.org/release/6.0-dev/constraints.txt
-c https://dist.plone.org/release/6.1-dev/constraints.txt

##
# Specify additional deps in .meta.toml:
# [tox]
Expand Down Expand Up @@ -152,8 +152,8 @@ set_env =
deps =
coverage
zope.testrunner
-c https://dist.plone.org/release/6.0-dev/constraints.txt
-c https://dist.plone.org/release/6.1-dev/constraints.txt

commands =
rfbrowser init
coverage run --branch --source plone.app.dexterity {envbindir}/zope-testrunner --quiet --all --test-path={toxinidir} -s plone.app.dexterity {posargs}
Expand All @@ -170,8 +170,8 @@ deps =
twine
build
towncrier
-c https://dist.plone.org/release/6.0-dev/constraints.txt
-c https://dist.plone.org/release/6.1-dev/constraints.txt

commands =
# fake version to not have to install the package
# we build the change log as news entries might break
Expand All @@ -198,8 +198,8 @@ allowlist_externals =
deps =
pipdeptree
pipforester
-c https://dist.plone.org/release/6.0-dev/constraints.txt
-c https://dist.plone.org/release/6.1-dev/constraints.txt

commands =
# Generate the full dependency tree
sh -c 'pipdeptree -j > forest.json'
Expand Down

0 comments on commit 3593e89

Please sign in to comment.