Skip to content

Commit

Permalink
Merge pull request #18 from surface-security/develop
Browse files Browse the repository at this point in the history
Drop Dj4 pin, miscellaneous work on workflows
  • Loading branch information
gsilvapt committed Oct 16, 2023
2 parents 1e97b9e + e33242c commit be82afd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/publish_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ name: publish test

on:
push:
branches: [testpypi]
branches:
- testpypi
- testpypi-*
- testpypi/*

jobs:
deploy:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
name: tests

on:
push:
branches: [main]
pull_request:
branches: [main]
branches:
- develop
- main

jobs:
style:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ include_package_data = True
packages = find:
python_requires = >=3.9
install_requires =
Django >= 3.0, <4
Django >= 3.0, <5
slack-sdk==3.19.2
# FIXME: make locks an optional dependency (and use, in the run_bot command)
django-database-locks < 1
Expand Down
2 changes: 1 addition & 1 deletion slackbot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from functools import lru_cache

__version__ = '0.0.4'
__version__ = '0.0.5'

# set default_app_config when using django earlier than 3.2
try:
Expand Down

0 comments on commit be82afd

Please sign in to comment.