forked from eyeonus/Trade-Dangerous
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: only try to publish from eyeonus repos
fixes eyeonus#134 This makes the publish job dependent on being the eyeonus repository. It also moves the requirements files into the top-level directory and organizes them into requirements, requirements-dev, and requirements-publish which incrementally reference the previous requirements file to simplify them. It's unusual for requirements*.txt to be in a subdirectory these days, and various tools are lazy about it, which can make these chained-references problematic as some tools will intepret them relatively and some won't; ergo having them in the tld together is less likely to suddenly not work one day.
- Loading branch information
Showing
5 changed files
with
31 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
mistune<2.0.0 | ||
m2r | ||
pytest | ||
Sphinx | ||
-r requirements.txt | ||
|
||
tox | ||
flake8 | ||
importlib-metadata>=1 | ||
wheel | ||
pytest | ||
tox-gh-actions | ||
coverage | ||
ijson | ||
rich==13.7.1 | ||
|
||
Sphinx | ||
mistune<2.0.0 | ||
m2r |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
-r dev.txt | ||
-r requirements-dev.txt | ||
|
||
packaging>=20.0 | ||
python-semantic-release | ||
build | ||
twine | ||
wheel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters