Skip to content

Commit

Permalink
Merge pull request #53 from capitalone/dev
Browse files Browse the repository at this point in the history
Release v2023.8.0
  • Loading branch information
Faisal authored Aug 28, 2023
2 parents fad6586 + 89eb3e6 commit 3e316e2
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 65 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/edgetest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
with:
ref: dev
- id: run-edgetest
uses: fdosani/run-edgetest-action@v1.2
uses: fdosani/run-edgetest-action@v1.3
with:
edgetest-flags: '-c setup.cfg --export'
base-branch: 'dev'
skip-pr: 'false'
python-version: 3.9
python-version: 3.10
4 changes: 2 additions & 2 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
with:
python-version: '3.8'
- name: Install dependencies
run: python -m pip install -r requirements.txt .[dev]
run: python -m pip install .[dev]
- name: Build
run: make sphinx
shell: bash
- name: Publish
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs/_build/html
folder: docs/_build/html
4 changes: 2 additions & 2 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.10'
- name: Install dependencies
run: python -m pip install -r requirements.txt .[dev]
run: python -m pip install .[dev]
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
python-version:
- 3.7
- 3.8
- 3.9
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install -r requirements.txt .[dev]
run: python -m pip install .[dev]
- name: Check docstrings
run: python -m pydocstyle edgetest_pip_tools --convention=numpy
- name: Check static typing
Expand Down
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
exclude: ^notebooks/
repos:
- repo: https://github.com/psf/black
rev: 22.3.0
rev: 23.7.0
hooks:
- id: black
types: [file, python]
language_version: python3.9
- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.5.4
language_version: python3.10
- repo: https://github.com/PyCQA/isort
rev: v5.12.0
hooks:
- id: isort
- repo: https://github.com/pycqa/flake8
rev: 3.8.3
rev: 6.1.0
hooks:
- id: flake8
additional_dependencies: [flake8-docstrings]
files: ^edgetest_pip_tools/
language_version: python3.9
language_version: python3.10
- repo: https://github.com/jazzband/pip-tools
rev: 5.5.0
rev: 7.3.0
hooks:
- id: pip-compile
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: debug-statements
Expand Down
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @fdosani @ak-gupta
* @fdosani @ak-gupta @jdawang @gladysteh99 @NikhilJArora
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# pip-tools integration for edgetest

![python-3.7](https://img.shields.io/badge/python-3.7-green.svg)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/edgetest-pip-tools)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
[![PyPI version](https://badge.fury.io/py/edgetest-pip-tools.svg)](https://badge.fury.io/py/edgetest-pip-tools)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/edgetest-pip-tools/badges/version.svg)](https://anaconda.org/conda-forge/edgetest-pip-tools)


[Full Documentation](https://capitalone.github.io/edgetest-pip-tools/)

Expand Down Expand Up @@ -72,4 +75,3 @@ License
-------

Apache-2.0

2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
author = "Akshay Gupta"

# The short X.Y version
version = "2023.6.0"
version = "2023.8.0"
# The full version, including alpha/beta/rc tags
release = ""

Expand Down
2 changes: 1 addition & 1 deletion edgetest_pip_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Package initialization."""

__version__ = "2023.6.0"
__version__ = "2023.8.0"

__title__ = "edgetest-pip-tools"
__description__ = "pip-tools integration for edgetest"
Expand Down
38 changes: 0 additions & 38 deletions requirements.txt

This file was deleted.

12 changes: 6 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ maintainer = Akshay Gupta
maintainer_email = [email protected]
url = https://github.com/capitalone/edgetest-pip-tools
python_requires =
>=3.7.0
>=3.8.0
project_urls =
Documentation = https://capitalone.github.io/edgetest-pip-tools/
Bug Tracker = https://github.com/capitalone/edgetest-pip-tools/issues
Expand All @@ -22,18 +22,18 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
edgetest
pip-tools<=6.13.0,>=6.0.0
pip-tools<=7.3.0,>=6.0.0

[options.extras_require]
docs =
Expand Down Expand Up @@ -87,7 +87,7 @@ edgetest =
piptools = edgetest_pip_tools.plugin

[bumpver]
current_version = "2023.6.0"
current_version = "2023.8.0"
version_pattern = "YYYY.MM.INC0"
commit_message = "Bump {old_version} to {new_version}"
commit = True
Expand Down Expand Up @@ -120,7 +120,7 @@ use_parentheses = True
line_length = 88

[mypy]
python_version = 3.7
python_version = 3.10
warn_return_any = True
warn_unused_configs = True
ignore_missing_imports = True
Expand All @@ -136,7 +136,7 @@ markers =
addopts = --verbose

[edgetest.envs.core]
python_version = 3.9
python_version = 3.10
upgrade =
edgetest
pip-tools
Expand Down

0 comments on commit 3e316e2

Please sign in to comment.