Skip to content

Commit

Permalink
update codeowners, bump default nautobot and python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gsnider2195 committed Aug 14, 2024
1 parent 61978ca commit 9e61d92
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Default owner(s) of all files in this repository
* @cmsirbu @gsnider2195 @smk4664
* @nautobot/maintain-nautobot-apps
8 changes: 4 additions & 4 deletions development/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
# -------------------------------------------------------------------------------------
# !!! USE CAUTION WHEN MODIFYING LINES BELOW

# Accepts a desired Nautobot version as build argument, default to 2.0.0
ARG NAUTOBOT_VER="2.0.0"
# Accepts a desired Nautobot version as build argument, default to 2.3.0
ARG NAUTOBOT_VER="2.3.0"

# Accepts a desired Python version as build argument, default to 3.11
ARG PYTHON_VER="3.11"
# Accepts a desired Python version as build argument, default to 3.12
ARG PYTHON_VER="3.12"

# Retrieve published development image of Nautobot base which should include most CI dependencies
FROM ghcr.io/nautobot/nautobot-dev:${NAUTOBOT_VER}-py${PYTHON_VER}
Expand Down
4 changes: 2 additions & 2 deletions invoke.example.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
nautobot_dev_example:
project_name: "nautobot-dev-example"
nautobot_ver: "2.0.0"
nautobot_ver: "2.3.0"
local: false
python_ver: "3.11"
python_ver: "3.12"
compose_dir: "development"
compose_files:
- "docker-compose.base.yml"
Expand Down
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ def is_truthy(arg):
namespace.configure(
{
"nautobot_dev_example": {
"nautobot_ver": "2.0.0",
"nautobot_ver": "2.3.0",
"project_name": "nautobot-dev-example",
"python_ver": "3.11",
"python_ver": "3.12",
"local": False,
"compose_dir": os.path.join(os.path.dirname(__file__), "development"),
"compose_files": [
Expand Down

0 comments on commit 9e61d92

Please sign in to comment.