Skip to content
Open
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ template. Your help and contribution make ScanCode docs better, we love hearing

The ScanCode documentation is hosted at `scancode-toolkit.readthedocs.io <https://scancode-toolkit.readthedocs.io/en/latest/>`_.

If you want to contribute to Scancode Documentation, you'll find `this guide here https://scancode-toolkit.readthedocs.io/en/latest/getting-started/contribute/contributing-docs.html`_ helpful.
If you want to contribute to Scancode Documentation, you'll find `this guide here <https://scancode-toolkit.readthedocs.io/en/latest/getting-started/contribute/contributing-docs.html>`_ helpful.

Development
===========
Expand Down Expand Up @@ -123,7 +123,7 @@ To set up ScanCode for local development:

git checkout -b name-of-your-bugfix-or-feature

4. Check out the Contributing to Code Development `documentation <https://scancode-toolkit.readthedocs.io/en/stable/contribute/contrib_dev.html>`_, as it contains more in-depth guide for contributing code and documentation.
Comment thread
SLASH217 marked this conversation as resolved.
4. Check out the Contributing to Code Development `documentation <https://scancode-toolkit.readthedocs.io/en/latest/getting-started/contribute/contributing-docs.html>`_, as it contains more in-depth guide for contributing code and documentation.

5. To configure your local environment for development, locate to the main
directory of the local repository, and run the configure script.
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jsonstreams==0.6.0
keyring==23.7.0
license-expression==30.4.4
lxml==6.0.2
luaparser==4.0.0
Comment thread
AyanSinhaMahapatra marked this conversation as resolved.
MarkupSafe==3.0.3
more-itertools==10.8.0
multiregex==2.0.3
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ install_requires =
jsonstreams >= 0.5.0
license_expression >= 30.4.4
lxml >= 5.4.0
luaparser == 4.0.0
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's not pin dependencies, you can add this as a lower bound. We are a library too :)

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Understood! Will keep in mind for future commits.

MarkupSafe >= 2.1.2
multiregex >= 2.0.3
normality <= 2.6.1
Expand Down
3 changes: 3 additions & 0 deletions src/packagedcode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
from packagedcode import pubspec
from packagedcode import pypi
from packagedcode import readme
from packagedcode import rockspec
from packagedcode import rpm
from packagedcode import rubygems
from packagedcode import swift
Expand Down Expand Up @@ -202,6 +203,8 @@
rubygems.GemspecInExtractedGemHandler,
rubygems.GemspecHandler,

rockspec.RockspecHandler,

swift.SwiftManifestJsonHandler,
swift.SwiftPackageResolvedHandler,
swift.SwiftShowDependenciesDepLockHandler,
Expand Down
Loading