Skip to content
This repository has been archived by the owner on Oct 27, 2022. It is now read-only.

Commit

Permalink
[update to 4.2] Declare dependency on Setuptools. Fixes #40.
Browse files Browse the repository at this point in the history
Jason R. Coombs (9):
      Older Setuptools will never work on Python 3.7.
      Save the pip cache across builds. Ref pypa/setuptools#1279.
      Add workaround for build failures on Python 3.7 (yaml/pyyaml#126).
      Run flake8 with tests. Add flake8 config to ignore common exclusions. Add comments to testing and docs extras to aid with merges.
      Add appveyor badge (commented). Disable RTD by default.
      Limit workaround to affected Python
      Merge https://github.com/jaraco/skeleton
      Declare dependency on Setuptools. Fixes #40.
      Moved dependency check to runtime. Fixes #40.

4.2
===

* #40: Remove declared dependency and instead assert it at
  run time.

4.1
===

* #40: Declare dependency on Setuptools in package metadata.
  • Loading branch information
fenrus75 authored and djklimes committed Apr 2, 2018
1 parent f6818ab commit 3bcac1a
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 11 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
4.2
===

* #40: Remove declared dependency and instead assert it at
run time.

4.1
===

* #40: Declare dependency on Setuptools in package metadata.

4.0
===

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKG_NAME := pytest-runner
URL = https://pypi.debian.net/pytest-runner/pytest-runner-4.0.tar.gz
URL = https://pypi.debian.net/pytest-runner/pytest-runner-4.2.tar.gz
ARCHIVES =

include ../common/Makefile.common
2 changes: 1 addition & 1 deletion options.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = pytest-runner
url = https://pypi.debian.net/pytest-runner/pytest-runner-4.0.tar.gz
url = https://pypi.debian.net/pytest-runner/pytest-runner-4.2.tar.gz
archives =
giturl = https://github.com/pytest-dev/pytest-runner.git

Expand Down
14 changes: 8 additions & 6 deletions pytest-runner.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@
# Generated by: autospec.py
#
Name : pytest-runner
Version : 4.0
Release : 27
URL : https://pypi.debian.net/pytest-runner/pytest-runner-4.0.tar.gz
Source0 : https://pypi.debian.net/pytest-runner/pytest-runner-4.0.tar.gz
Version : 4.2
Release : 28
URL : https://pypi.debian.net/pytest-runner/pytest-runner-4.2.tar.gz
Source0 : https://pypi.debian.net/pytest-runner/pytest-runner-4.2.tar.gz
Summary : Invoke py.test as distutils command with dependency resolution
Group : Development/Tools
License : MIT
Requires: pytest-runner-python3
Requires: pytest-runner-python
Requires: Sphinx
Requires: pytest
BuildRequires : pbr
BuildRequires : pip
BuildRequires : pluggy
Expand Down Expand Up @@ -47,14 +49,14 @@ python3 components for the pytest-runner package.


%prep
%setup -q -n pytest-runner-4.0
%setup -q -n pytest-runner-4.2

%build
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
export LANG=C
export SOURCE_DATE_EPOCH=1521134220
export SOURCE_DATE_EPOCH=1522378191
python3 setup.py build -b py3

%install
Expand Down
2 changes: 1 addition & 1 deletion release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
27
28
2 changes: 1 addition & 1 deletion upstream
Original file line number Diff line number Diff line change
@@ -1 +1 @@
773e66bc75b666e0d0cd9aeb44e331ccf0137ad4/pytest-runner-4.0.tar.gz
95dccf7142e30fbbe3d1f4ea08aae8d6cc15c5d6/pytest-runner-4.2.tar.gz
1 change: 0 additions & 1 deletion whatrequires
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# This file contains recursive sources that require this package
dask
flake8
keyring
mccabe
pylint
scikit-image
Expand Down

0 comments on commit 3bcac1a

Please sign in to comment.