Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main #154

Closed
wants to merge 5 commits into from
Closed

Main #154

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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
nautobot-version: ["1.2", "1.3", "stable"]
python-version: ["3.8", "3.9", "3.10"]
nautobot-version: ["2.0"]
exclude:
- python-version: 3.10
nautobot-version: 1.2
Expand Down
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## v2.0.1

### Bug Fixes

- (#140) Fixes SSL
- (#141) Fixes methods and endpoints naming overlap

## v2.0.0

### Significant Updates

New release for nautobot 2.0

- (#135) - Docs Update
- (#134) - Updates in .choices due to changed `OPTIONS` schema
- (#130) - Add version constraint on `__init__` to divide 1.X and 2.X.

## 2.0.0-rc.1

### Significant Updates

Release Candidate.
New release train for nautobot 2.X

## v1.5.0

### New Features
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This section describes how to install *pynautobot* for development, how to run t

## Python Versions

This leverages Python3.6 or later.
This leverages Python 3.8 or later.

## Installing dependencies for local development

Expand All @@ -21,7 +21,7 @@ Follow these steps to set up your local development environment:
```bash
# Double check your version
$ python --version
Python 3.7.7
Python 3.8.7
# Activate the Poetry environment, which will auto create the virtual environment related to the project
$ poetry shell
# Install project dependencies as well as development dependencies
Expand Down
10 changes: 8 additions & 2 deletions development/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
nautobot:
condition: "service_healthy"
nautobot:
image: "ghcr.io/nautobot/nautobot-dev:${NAUTOBOT_VER:-1.3}-py${PYTHON_VER:-3.7}"
image: "ghcr.io/nautobot/nautobot:${NAUTOBOT_VER:-1.3}-py${PYTHON_VER:-3.8}"
command: "nautobot-server runserver 0.0.0.0:8000 --insecure"
ports:
- "8000:8000"
Expand All @@ -33,7 +33,7 @@ services:
healthcheck:
interval: "30s"
timeout: "10s"
start_period: "2m"
start_period: "5m"
retries: 4
test:
- "CMD-SHELL"
Expand All @@ -49,3 +49,9 @@ services:
- "-c" # this is to evaluate the $REDIS_PASSWORD from the env
- "redis-server --appendonly yes --requirepass $$REDIS_PASSWORD" ## $$ because of docker-compose
env_file: "./dev.env"
docs:
image: "nginx:alpine"
ports:
- "8001:80"
volumes:
- "${PWD}/docs/_build/html:/usr/share/nginx/html:ro"
Loading
Loading