Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Add freeze banner #39

Merged
merged 5 commits into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10"]
nautobot-version: ["1.4.2", "latest"]
runs-on: "ubuntu-20.04"
env:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Nautobot Single Source of Truth -- ServiceNow Data Target

# The code in this repository has been migrated to the [Nautobot SSoT Repository](https://github.com/nautobot/nautobot-plugin-ssot) as an integration - read more about it in the [SSoT Docs](https://docs.nautobot.com/projects/ssot/en/latest/admin/install/)! As of August 2023 this repository has been **FROZEN** - all development / issues / discussions for this integration are in the [Nautobot SSoT Repository](https://github.com/nautobot/nautobot-plugin-ssot) going forward.

A plugin for [Nautobot](https://github.com/nautobot/nautobot), building atop the [nautobot-ssot](https://github.com/nautobot/nautobot-plugin-ssot/) plugin.

This plugin provides the ability to synchronize basic data from Nautobot into ServiceNow. Currently the following data is mapped and synchronized:
Expand Down
3 changes: 1 addition & 2 deletions development/docker-compose.base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ services:
depends_on:
- "postgres"
- "redis"
<<: *nautobot-build
<<: *nautobot-base
<<: [*nautobot-build, *nautobot-base]
worker:
entrypoint: "nautobot-server rqworker"
depends_on:
Expand Down
1 change: 0 additions & 1 deletion nautobot_ssot_servicenow/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@


class Migration(migrations.Migration):

initial = True

dependencies = [
Expand Down
3,242 changes: 0 additions & 3,242 deletions poetry.lock

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ packages = [
[tool.poetry.dependencies]
python = "^3.7"
nautobot = "^1.4.0"
nautobot-ssot = "^1.0.1"
nautobot-ssot = "1.3.2"
Jinja2 = ">=2.11.3"
PyYAML = ">=5.4"
diffsync = "^1.3.0"
Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def is_truthy(arg):
"nautobot_ssot_servicenow": {
"nautobot_ver": "1.4.0",
"project_name": "nautobot-ssot-servicenow",
"python_ver": "3.7",
"python_ver": "3.8",
"local": False,
"compose_dir": os.path.join(os.path.dirname(__file__), "development"),
"compose_files": [
Expand Down
Loading