Skip to content

Commit 86b95fe

Browse files
Change project ownership to AmbitionEng (#14)
* Initialize template from version 072543e27d8b506a6628f7793798609c62d6a8ae * Update template to version b7d2321846eeeb120ea9455597ddcf9bd8b5e7a4 * Bump version
1 parent 25288c4 commit 86b95fe

File tree

15 files changed

+53
-34
lines changed

15 files changed

+53
-34
lines changed

.circleci/config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2.1
22

33
orbs:
4-
opus10:
4+
ambitioneng:
55
executors:
66
python:
77
working_directory: /code
@@ -38,20 +38,20 @@ orbs:
3838
jobs:
3939
test_pg_min:
4040
executor:
41-
name: opus10/python
41+
name: ambitioneng/python
4242
pg_version: "13.16"
4343
steps:
44-
- opus10/test
44+
- ambitioneng/test
4545

4646
test_pg_max:
4747
executor:
48-
name: opus10/python
48+
name: ambitioneng/python
4949
pg_version: "17.0"
5050
steps:
51-
- opus10/test
51+
- ambitioneng/test
5252

5353
lint:
54-
executor: opus10/python
54+
executor: ambitioneng/python
5555
steps:
5656
- checkout
5757
- restore_cache:
@@ -60,7 +60,7 @@ jobs:
6060
- run: make lint
6161

6262
type_check:
63-
executor: opus10/python
63+
executor: ambitioneng/python
6464
steps:
6565
- checkout
6666
- restore_cache:
@@ -69,7 +69,7 @@ jobs:
6969
- run: make type-check || true
7070

7171
deploy:
72-
executor: opus10/python
72+
executor: ambitioneng/python
7373
steps:
7474
- checkout
7575
- run: ssh-add -D

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 1.7.1 (2024-12-15)
4+
5+
#### Changes
6+
7+
- Changed project ownership to `AmbitionEng` by [@wesleykendall](https://github.com/wesleykendall) in [#14](https://github.com/AmbitionEng/django-pgactivity/pull/14).
8+
39
## 1.7.0 (2024-11-01)
410

511
#### Changes

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Contributing Guide
22

3-
This project was created using footing. For more information about footing, go to the [footing docs](https://github.com/Opus10/footing).
3+
This project was created using footing. For more information about footing, go to the [footing docs](https://github.com/AmbitionEng/footing).
44

55
## Setup
66

77
Set up your development environment with:
88

9-
git clone [email protected]:Opus10/django-pgactivity.git
9+
git clone [email protected]:AmbitionEng/django-pgactivity.git
1010
cd django-pgactivity
1111
make docker-setup
1212

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2024, Opus 10
1+
Copyright (c) 2025, Ambition
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without
@@ -18,7 +18,7 @@ modification, are permitted provided that the following conditions are met:
1818
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1919
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2020
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21-
DISCLAIMED. IN NO EVENT SHALL OPUS 10 BE LIABLE FOR ANY
21+
DISCLAIMED. IN NO EVENT SHALL AMBITION BE LIABLE FOR ANY
2222
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2323
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2424
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ db-setup:
9696
# Sets up a conda development environment
9797
.PHONY: conda-create
9898
conda-create:
99-
-conda env create -f environment.yml --force
99+
-conda env create -f environment.yml -y
100100
$(EXEC_WRAPPER) poetry config virtualenvs.create false --local
101101

102102

devops.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
package deployment, changelog generation, and changelog checking.
66
77
This script is generated by the template at
8-
https://github.com/Opus10/python-library-template
8+
https://github.com/AmbitionEng/python-library-template
99
1010
Do not change this script! Any fixes or updates to this script should be made
11-
to https://github.com/Opus10/python-library-template
11+
to https://github.com/AmbitionEng/python-library-template
1212
"""
1313

1414
import os
@@ -51,7 +51,7 @@ def deploy() -> None:
5151

5252
_publish_to_pypi()
5353

54-
print(f"Deployment complete.")
54+
print("Deployment complete.")
5555

5656

5757
if __name__ == "__main__":

docs/css/mkdocs-material.css

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
11
.md-typeset__table {
2-
min-width: 100%;
2+
min-width: 100%;
33
}
4-
4+
55
.md-typeset table:not([class]) {
6-
display: table;
6+
display: table;
77
}
88

99
:root {
10-
--md-primary-fg-color: #BD4D86;
11-
--md-primary-fg-color--light: #BD4D86;
12-
--md-primary-fg-color--dark: #BD4D86;
10+
--md-primary-fg-color: #1d1f29;
11+
--md-primary-fg-color--light: #1d1f29;
12+
--md-primary-fg-color--dark: #1d1f29;
13+
}
14+
15+
.md-content {
16+
--md-typeset-a-color: #00bc70;
1317
}
1418

1519
.md-footer {
16-
background-color: #BD4D86;
20+
background-color: #1d1f29;
1721
}
1822
.md-footer-meta {
19-
background-color: #973E6B;
23+
background-color: #1d1f29;
2024
}
2125

2226
readthedocs-flyout {
23-
display: none;
27+
display: none;
2428
}

docs/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ import pgactivity
5858
def my_operation():
5959
# Any queries in this operation that take over 500 milliseconds will throw
6060
# django.db.utils.OperationalError.
61-
```
6261

6362
## Compatibility
6463

docs/static/dark_logo.png

9.52 KB
Loading

docs/static/light_logo.png

25.9 KB
Loading

0 commit comments

Comments
 (0)