Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
minijson
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
minijson
Commits
b7ef0a39
Unverified
Commit
b7ef0a39
authored
1 year ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
add GitHub Actions
parent
e9785250
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.github/workflows/ci.yml
+22
-0
22 additions, 0 deletions
.github/workflows/ci.yml
LICENSE
+1
-0
1 addition, 0 deletions
LICENSE
docs/index.rst
+4
-5
4 additions, 5 deletions
docs/index.rst
setup.cfg
+4
-1
4 additions, 1 deletion
setup.cfg
with
31 additions
and
6 deletions
.github/workflows/ci.yml
0 → 100644
+
22
−
0
View file @
b7ef0a39
name
:
CI
run-name
:
${{ github.actor }}
on
:
[
push
]
jobs
:
tests
:
runs-on
:
ubuntu-20.04
strategy
:
matrix
:
python-version
:
[
"
3.5"
,
"
3.6"
,
"
3.7"
,
"
3.8"
,
"
3.9"
,
"
3.10"
,
"
3.11"
,
"
3.12"
]
steps
:
-
uses
:
actions/checkout@main
-
uses
:
actions/setup-python@main
with
:
python-version
:
${{ matrix.python-version }}
cache
:
pip
-
name
:
Install everything
run
:
|
sudo apt-get update
sudo apt-get install -y python3-setuptools python3-yaml python3-dev
pip install -U pip pytest coverage pytest-cov Cython
-
name
:
Test
run
:
pytest
This diff is collapsed.
Click to expand it.
LICENSE
+
1
−
0
View file @
b7ef0a39
MIT License
MIT License
Copyright (c) 2021 Dronehub Group sp. z o. o.
Copyright (c) 2021 Dronehub Group sp. z o. o.
Copyright (c) 2024 SMOK sp. z o. o.
Permission is hereby granted, free of charge, to any person obtaining a copy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
of this software and associated documentation files (the "Software"), to deal
...
...
This diff is collapsed.
Click to expand it.
docs/index.rst
+
4
−
5
View file @
b7ef0a39
.. MiniJSON documentation master file, created by
sphinx-quickstart on Wed May 26 13:28:36 2021.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to MiniJSON's documentation!
Welcome to MiniJSON's documentation!
====================================
====================================
...
@@ -26,6 +21,10 @@ You should avoid objects with keys different than strings, since they will alway
...
@@ -26,6 +21,10 @@ You should avoid objects with keys different than strings, since they will alway
4-byte length field. This is to be improved in a future release. Key not being strings
4-byte length field. This is to be improved in a future release. Key not being strings
is anyway invalid JSON_.
is anyway invalid JSON_.
.. warning::
Note that the valid mimetype for this is :code:`application/x-minijson`,
although you can use the :code:`application/minijson` in a pinch.
.. _JSON: https://www.w3schools.com/js/js_json_objects.asp
.. _JSON: https://www.w3schools.com/js/js_json_objects.asp
...
...
This diff is collapsed.
Click to expand it.
setup.cfg
+
4
−
1
View file @
b7ef0a39
...
@@ -15,13 +15,16 @@ project_urls =
...
@@ -15,13 +15,16 @@ project_urls =
Code
= https://github.com/Dronehub/minijson
Code
= https://github.com/Dronehub/minijson
Issue
tracker = https://github.com/Dronehub/minijson/issues
Issue
tracker = https://github.com/Dronehub/minijson/issues
classifier
=
classifier
=
Development
Status ::
4
-
Beta
Development
Status ::
5
-
Production/Stable
Programming
Language :: Python
Programming
Language :: Python
Programming
Language :: Python :: 3.5
Programming
Language :: Python :: 3.5
Programming
Language :: Python :: 3.6
Programming
Language :: Python :: 3.6
Programming
Language :: Python :: 3.7
Programming
Language :: Python :: 3.7
Programming
Language :: Python :: 3.8
Programming
Language :: Python :: 3.8
Programming
Language :: Python :: 3.9
Programming
Language :: Python :: 3.9
Programming
Language :: Python :: 3.10
Programming
Language :: Python :: 3.11
Programming
Language :: Python :: 3.12
Programming
Language :: Python :: Implementation :: CPython
Programming
Language :: Python :: Implementation :: CPython
Programming
Language :: Python :: Implementation :: PyPy
Programming
Language :: Python :: Implementation :: PyPy
Operating
System :: OS Independent
Operating
System :: OS Independent
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment