Skip to content

Commit 87ced6c

Browse files
committed
Remove compliance policies
Add dependabot.yml AB#10628 Signed-off-by: Paul Hewlett <phewlett76@gmail.com>
1 parent 0a8db34 commit 87ced6c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+60
-5238
lines changed

.github/dependabot.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# refer: https://github.com/dependabot/dependabot-core/blob/main/.github/dependabot.yml
2+
version: 2
3+
updates:
4+
# Maintain dependencies for GitHub Actions
5+
- package-ecosystem: "github-actions"
6+
directory: "/"
7+
schedule:
8+
# Check for updates managed by Composer once a week
9+
interval: "weekly"
10+
day: "wednesday"
11+
time: "03:00"
12+
timezone: "Europe/London"
13+
14+
# python
15+
- package-ecosystem: "pip"
16+
directory: "/"
17+
schedule:
18+
interval: "weekly"
19+
day: "wednesday"
20+
time: "03:00"
21+
timezone: "Europe/London"
22+
groups:
23+
common:
24+
patterns:
25+
- hashin
26+
- cython
27+
- flake8
28+
# Keep the package managers themselves separate because they are higher risk
29+
# and also higher visibility--ie, users generally want latest, so we don't
30+
# want breakage in the `common` group to prevent updating package manager versions
31+
pip:
32+
patterns:
33+
- pip
34+
pip-tools:
35+
patterns:
36+
- pip-tools
37+
pipenv:
38+
patterns:
39+
- pipfile
40+
- pipenv
41+
poetry:
42+
patterns:
43+
- poetry

archivist/archivist.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@
4747
from .assetattachments import _AssetAttachmentsClient
4848
from .assets import _AssetsRestricted
4949
from .attachments import _AttachmentsClient
50-
from .compliance import _ComplianceClient
51-
from .compliance_policies import _CompliancePoliciesClient
5250
from .composite import _CompositeClient
5351
from .confirmer import MAX_TIME
5452
from .constants import (
@@ -96,8 +94,6 @@ class Archivist(ArchivistPublic): # pylint: disable=too-many-instance-attribute
9694
"appidp": _AppIDPClient,
9795
"applications": _ApplicationsClient,
9896
"attachments": _AttachmentsClient,
99-
"compliance": _ComplianceClient,
100-
"compliance_policies": _CompliancePoliciesClient,
10197
"composite": _CompositeClient,
10298
"events": _EventsRestricted,
10399
"locations": _LocationsClient,
@@ -144,8 +140,6 @@ def __init__(
144140
self.assets: _AssetsRestricted
145141
self.assetattachments: _AssetAttachmentsClient
146142
self.attachments: _AttachmentsClient
147-
self.compliance: _ComplianceClient
148-
self.compliance_policies: _CompliancePoliciesClient
149143
self.composite: _CompositeClient
150144
self.events: _EventsRestricted
151145
self.locations: _LocationsClient

archivist/compliance.py

Lines changed: 0 additions & 121 deletions
This file was deleted.

0 commit comments

Comments
 (0)