Skip to content

Commit

Permalink
[fc] Repository: plone.uuid
Browse files Browse the repository at this point in the history
Branch: refs/heads/master
Date: 2018-01-05T00:01:59+01:00
Author: Gil Forcada (gforcada) <gil.gnome@gmail.com>
Commit: plone/plone.uuid@08e1719

Fix package dependencies

Files changed:
M CHANGES.rst
M setup.py
Repository: plone.uuid

Branch: refs/heads/master
Date: 2018-01-05T17:44:39+01:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.uuid@a1b8b19

Merge pull request #5 from plone/gforcada-patch-1

Fix package dependencies

Files changed:
M CHANGES.rst
M setup.py
  • Loading branch information
jensens committed Jan 5, 2018
1 parent 1458948 commit 5615648
Showing 1 changed file with 96 additions and 11 deletions.
107 changes: 96 additions & 11 deletions last_commit.txt
Expand Up @@ -2,28 +2,113 @@ Repository: plone.uuid


Branch: refs/heads/master
Date: 2018-01-04T23:58:08+01:00
Date: 2018-01-05T00:01:59+01:00
Author: Gil Forcada (gforcada) <gil.gnome@gmail.com>
Commit: https://github.com/plone/plone.uuid/commit/eb403c531a6b9e54635e15e04908a3168c6cbb92
Commit: https://github.com/plone/plone.uuid/commit/08e171901868c54f8e7f89cc8b4e04414babceba

Add empty test extra
Fix package dependencies

Files changed:
M CHANGES.rst
M setup.py

diff --git a/CHANGES.rst b/CHANGES.rst
index a767977..4393c65 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -14,8 +14,8 @@ New features:

Bug fixes:

-- *add item here*
-
+- Fix package dependencies.
+ [gforcada]

1.0.4 (2016-06-02)
------------------
diff --git a/setup.py b/setup.py
index 108da1d..f4171a4 100644
index f4171a4..1623b71 100644
--- a/setup.py
+++ b/setup.py
@@ -41,6 +41,11 @@
@@ -35,7 +35,9 @@
include_package_data=True,
zip_safe=False,
install_requires=[
+ 'Acquisition',
'setuptools',
+ 'zope.component',
'zope.browserpage',
'zope.interface',
'zope.lifecycleevent',
'zope.publisher',
@@ -43,9 +45,10 @@
],
+ extras_require={
+ 'test': [
+ ]
+ },
+
extras_require={
'test': [
+ 'zope.configuration',
+ 'zope.event',
]
},
-
entry_points="""
""",
)


Repository: plone.uuid


Branch: refs/heads/master
Date: 2018-01-05T17:44:39+01:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: https://github.com/plone/plone.uuid/commit/a1b8b19acb48136059087a3bd869dd268795b4b5

Merge pull request #5 from plone/gforcada-patch-1

Fix package dependencies

Files changed:
M CHANGES.rst
M setup.py

diff --git a/CHANGES.rst b/CHANGES.rst
index a767977..4393c65 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -14,8 +14,8 @@ New features:

Bug fixes:

-- *add item here*
-
+- Fix package dependencies.
+ [gforcada]

1.0.4 (2016-06-02)
------------------
diff --git a/setup.py b/setup.py
index f4171a4..1623b71 100644
--- a/setup.py
+++ b/setup.py
@@ -35,7 +35,9 @@
include_package_data=True,
zip_safe=False,
install_requires=[
+ 'Acquisition',
'setuptools',
+ 'zope.component',
'zope.browserpage',
'zope.interface',
'zope.lifecycleevent',
@@ -43,9 +45,10 @@
],
extras_require={
'test': [
+ 'zope.configuration',
+ 'zope.event',
]
},
-
entry_points="""
""",
)
Expand Down

0 comments on commit 5615648

Please sign in to comment.