Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/tintoy/seqlog into issue-t…
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmaslanka committed Dec 20, 2024
2 parents f4ed444 + d94a09f commit ec67469
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 24 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: tox
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Run tox
run: python -m tox
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
SeqLog
===============================

.. image:: https://github.com/tintoy/seqlog/actions/workflows/tox.yml/badge.svg
:target: https://github.com/tintoy/seqlog

.. image:: https://img.shields.io/pypi/v/seqlog.svg
:target: https://pypi.python.org/pypi/seqlog
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sphinx==5.3.0
sphinx_rtd_theme==1.1.1
readthedocs-sphinx-search==0.1.1
readthedocs-sphinx-search==0.3.2
39 changes: 19 additions & 20 deletions meta.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
package:
name: seqlog
version: 0.3.31

requirements:
host:
- python
- setuptools

run:
- python

source:
git_url: http://github.com/tintoy/seqlog.git

about:
home: http://github.com/tintoy/seqlog
license: MIT
license_file: LICENSE

package:
name: seqlog
version: 0.5.0

requirements:
host:
- python
- setuptools

run:
- python

source:
git_url: http://github.com/tintoy/seqlog.git

about:
home: http://github.com/tintoy/seqlog
license: MIT
license_file: LICENSE
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ flake8>=2.6.0
tox>=2.3.1
coverage>=4.1
Sphinx>=1.4.4
cryptography==41.0.4
cryptography==42.0.4
PyYAML>=3.11
pytest>=2.9.2
httmock>=1.2.5
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
'tox>=2.3.1',
'coverage>=4.1',
'Sphinx>=1.4.4',
'cryptography==41.0.4',
'cryptography==42.0.4',
'PyYAML>=3.11',
'pytest>=2.9.2',
'httmock>=1.2.5'
Expand Down Expand Up @@ -55,6 +55,9 @@
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
test_suite='tests',
tests_require=test_requirements
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36, py38, flake8
envlist = py36, py38, py39, py310, py311, flake8

[testenv:flake8]
basepython=python
Expand Down

0 comments on commit ec67469

Please sign in to comment.