Skip to content

Commit 788b75c

Browse files
authored
Merge pull request #2665 from chaoss/dev
Dev Release to Main
2 parents fa8d100 + 335864c commit 788b75c

File tree

52 files changed

+3646
-626
lines changed

Some content is hidden

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

52 files changed

+3646
-626
lines changed

.github/workflows/checks.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "run-linting-checks"
2+
on:
3+
pull_request:
4+
branches: [main, dev]
5+
6+
jobs:
7+
run-pylint:
8+
name: runner / pylint
9+
permissions: write-all
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: dciborow/[email protected]
14+
with:
15+
github_token: ${{ secrets.GITHUB_TOKEN }}
16+
reporter: github-pr-review
17+
level: warning
18+
glob_pattern: "**/*.py"
19+
filter_mode: "file"
20+
21+
misspell:
22+
name: runner / misspell
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Highlight any misspellings in changes.
26+
uses: actions/checkout@v4
27+
- name: misspell
28+
uses: reviewdog/action-misspell@v1
29+
with:
30+
github_token: ${{ secrets.GITHUB_TOKEN }}
31+
locale: "US"

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#refactoring checker
1313
#enable=R
1414

15-
disable=E0611,E1101,W1203,R0801,W0614,W0611,C0411,C0103,C0301,C0303,C0304,C0305,W0311
15+
disable=E0611,E1101,W1203,R0801,W0614,W0611,C0411,C0103,C0301,C0303,C0304,C0305,W0311,E0401
1616

1717

1818
# Analyse import fallback blocks. This can be used to support both Python 2 and

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Augur NEW Release v0.60.2
1+
# Augur NEW Release v0.62.0
2+
3+
CHECK out Augur's Public Instance at https://ai.chaoss.io
24

35
[![first-timers-only](https://img.shields.io/badge/first--timers--only-friendly-blue.svg?style=flat-square)](https://www.firsttimersonly.com/) We follow the [First Timers Only](https://www.firsttimersonly.com/) philosophy of tagging issues for first timers only, and walking one newcomer through the resolution process weekly. [You can find these issues tagged with "first timers only" on our issues list.](https://github.com/chaoss/augur/labels/first-timers-only).
46

@@ -7,7 +9,7 @@
79
## NEW RELEASE ALERT!
810
### [If you want to jump right in, updated docker build/compose and bare metal installation instructions are available here](docs/new-install.md)
911

10-
Augur is now releasing a dramatically improved new version to the main branch. It is also available here: https://github.com/chaoss/augur/releases/tag/v0.60.2
12+
Augur is now releasing a dramatically improved new version to the main branch. It is also available here: https://github.com/chaoss/augur/releases/tag/v0.62.0
1113
- The `main` branch is a stable version of our new architecture, which features:
1214
- Dramatic improvement in the speed of large scale data collection (100,000+ repos). All data is obtained for 100k+ repos within 2 weeks.
1315
- A new job management architecture that uses Celery and Redis to manage queues, and enables users to run a Flower job monitoring dashboard

augur/api/routes/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
from .user import *
1212
from .dei import *
1313
from .util import *
14+
from .complexity import *

0 commit comments

Comments
 (0)