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

Commit

Permalink
Manually uploaded the new package to PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Feb 8, 2021
1 parent 63de2d0 commit 2981acb
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.rst
@@ -1,7 +1,7 @@
.. image:: http://dcowden.github.io/cadquery/_static/cadquery_logo_dark.svg
.. image:: https://raw.githubusercontent.com/dcowden/cadquery/master/doc/_static/logo/cadquery_logo_dark.svg


ANNOUNCEMENT! CadQuery has moved to https://github.com/CadQuery/cadquery and this repo will be archived eventually.
ANNOUNCEMENT! CadQuery has moved to https://github.com/CadQuery/cadquery and this repo has been archived.
=========================================================================================================================

What is CadQuery?
Expand Down
11 changes: 7 additions & 4 deletions cadquery.egg-info/PKG-INFO
@@ -1,15 +1,15 @@
Metadata-Version: 1.1
Name: cadquery
Version: 1.2.1
Version: 1.2.5
Summary: CadQuery is a parametric scripting language for creating and traversing CAD models
Home-page: https://github.com/dcowden/cadquery
Author: David Cowden
Author-email: dave.cowden@gmail.com
License: Apache Public License 2.0
Description: .. image:: http://dcowden.github.io/cadquery/_static/cadquery_logo_dark.svg
Description: .. image:: https://raw.githubusercontent.com/dcowden/cadquery/master/doc/_static/logo/cadquery_logo_dark.svg


ANNOUNCEMENT! CadQuery has moved to https://github.com/CadQuery/cadquery and this repo will be archived eventually.
ANNOUNCEMENT! CadQuery has moved to https://github.com/CadQuery/cadquery and this repo has been archived.
=========================================================================================================================

What is CadQuery?
Expand Down Expand Up @@ -63,6 +63,7 @@ Description: .. image:: http://dcowden.github.io/cadquery/_static/cadquery_logo_
Installation instructions for all following use cases can be found `here <http://dcowden.github.io/cadquery/installation.html>`_.

It is currently possible to use CadQuery for your own projects in 4 different ways:

* as a plugin for FreeCAD
* using the Docker Image to operate CadQuery as a CLI
* as a plugin running on a Jupyter Notebook server
Expand Down Expand Up @@ -117,7 +118,9 @@ Description: .. image:: http://dcowden.github.io/cadquery/_static/cadquery_logo_

... STEP output on the console

Build local models and output to the same directory::
Build local models and output to the same directory

.. code-block:: bash

docker run -v $PWD:/home/cq -i dcowden/cadquery:latest build --in_spec Ex001_Simple_Block.py --format STEP
INFO: Reading from file 'Ex001_Simple_Block.py'
Expand Down
6 changes: 5 additions & 1 deletion cadquery/__init__.py
@@ -1,3 +1,7 @@
import warnings
print("WARNING: CadQuery 1.x is no longer supported. Please upgrade to CadQuery 2.x https://github.com/CadQuery/cadquery")
warnings.warn("CadQuery 1.x is no longer supported. Please upgrade to CadQuery 2.x https://github.com/CadQuery/cadquery", DeprecationWarning)

#these items point to the freecad implementation
from .freecad_impl.geom import Plane,BoundBox,Vector,Matrix,sortWiresByBuildOrder
from .freecad_impl.shapes import Shape,Vertex,Edge,Face,Wire,Solid,Shell,Compound
Expand All @@ -18,4 +22,4 @@
'TypeSelector','DirectionMinMaxSelector','StringSyntaxSelector','Selector','plugins',
]

__version__ = "1.2.0"
__version__ = "1.2.5"
4 changes: 4 additions & 0 deletions changes.md
@@ -1,6 +1,10 @@
Changes
=======

v1.2.5
------
* This is a deprecation release to clean things up so that the repository can be archived


v1.2.0
------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -17,7 +17,7 @@


#if we are building in travis, use the build number as the sub-minor version
version = '1.2.1'
version = '1.2.5'
version = os.environ.get('TRAVIS_TAG', None) or version

setup(
Expand Down

0 comments on commit 2981acb

Please sign in to comment.