Skip to content
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.

Commit

Permalink
[fix] Make forked dependency installable via pip refs a6f4258 a11e81b
Browse files Browse the repository at this point in the history
  • Loading branch information
mafrosis committed Apr 20, 2021
1 parent 4c0e964 commit f71c56f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ arrow==0.15.8
click==7.1.2
cryptography==3.4.7
dataclasses; python_version<='3.6'
#dictdiffer==0.8.1
git+git://github.com/mafrosis/dictdiffer@merge-ignore#egg=dictdiffer
dictdiffer @ git+git://github.com/mafrosis/dictdiffer@merge-ignore
pyarrow==3.0.0
feather-format==0.4.1
numpy==1.19.5; python_version=='3.6'
Expand Down
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@

import jira_offline

REQUIRES = [
line for line in open('requirements.txt').readlines() if 'git+git' not in line
]

setup(
name='jira-offline',
version=jira_offline.__version__,
Expand All @@ -21,7 +17,7 @@
package_data={'': ['LICENSE']},
package_dir={'': '.'},
include_package_data=True,
install_requires=REQUIRES,
install_requires=open('requirements.txt').readlines(),
license='MIT License',
entry_points={
'console_scripts': [
Expand Down

0 comments on commit f71c56f

Please # to comment.