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

Author updates #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
46 changes: 46 additions & 0 deletions .github/workflows/ci-gh-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: EOM
on: [pull_request]

job:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: pip install -r test-requirements.txt -r requirements.txt --upgrade
- name: Install
run: pip install .
- name: Run Tox
run: tox -v -e pep8 -- -v
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: [3.9, 3.10, 3.11]
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: pip install -r test-requirements.txt -r requirements.txt --upgrade
- name: Install
run: pip install .
- name: Run Tox
run: tox -v -e py${{ matrix.python-version }} -- -v
- name: Run Tox Optional Modules
run: nosetests --with-coverage --cover-package=eom tests
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,10 @@ Incubator project for general OpenStack API middleware.

So far, includes verb-based ACL enforcement and simple/efficient rate limiting.
Ideas and code should be contributed upstream to OpenStack, according to community interest.


NOTE
----

This project was originally developed by Rackspace. However, as the Rackspace repository is not longer public
or modifiable by the maintainers is has been moved to one of the downstream forks.
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ summary = Experimental OpenStack WSGI Middleware
description-file =
README.rst
license = Apache-2
author = Rackspace
author-email = ben.meyer@rackspace.com
maintainer = Rackspace
maintainer-email = ben.meyer@rackspace.com
home-page = https://github.com/rackerlabs/eom
author = Benjamen Meyer
author-email = bm_witness@yahoo.com
maintainer = Benjamen Meyer
maintainer-email = bm_witness@yahoo.com
home-page = https://github.com/BenjamenMeyer/eom
classifier =
Development Status :: 4 - Beta
Environment :: OpenStack
Expand Down